Jump to content
xisto Community
Sign in to follow this  
spy_charly

Requesting Php Mailing List Script That isnt detected as Spam

Recommended Posts

hello guys...i was looking for a script that sends mails to my frineds at once or to send like 50 mails at once and i saw that actually fantastico has a script already pre-installed, but it is not as good as i expected it would.The mails are send as spam and that is not actually a good solution since many companies well ok hotmail deletes that kind of mails, and yahoo! send'em to the spam too. And i never could have the mailing list properly working.So i would like to have a easier to use script and also that the mails host doesnt think it is all spam and something that could be awsome is to send fully html pages such as the ones i receive from macromediathanx in advance

Notice from jlhaslip:
modified topic and added description
Edited by jlhaslip (see edit history)

Share this post


Link to post
Share on other sites

I assume you use the PHP function mail(); ??? Your mail will probably end up in the BULK/SPAM folder since it doesn't say who send it. You just used this, didn't you?:

$to = "someone@somewhere.net";$subject = "something";$message = "Dear someone, this is a test of my mail script. Blablabla, blablabla.";mail($to, $subject, $message)

You should add this header so the spamfilter sees who send it:

$header = "From: webmaster@" . $_SERVER['SERVER_NAME'] . "\r\n";

So you got this:

$to = "someone@somewhere.net";$subject = "something";$message = "Dear someone, this is a test of my mail script. Blablabla, blablabla.";$header = "From: webmaster@" . $_SERVER['SERVER_NAME'] . "\r\n";mail($to, $subject, $message, $header)

Hope this helps. Otherwise you just have to say to your friends that they have to whitelist your domain.

Regards,
Warbird.

Share this post


Link to post
Share on other sites

I wrote a basic mailing list script years ago. I just tested it and it works perfectly on Trap 17. If you want a copy of it then email me or get me on MSN, all my details are in my profile here. It is only one file, but has basic verification, admin functions, user confirmation etc, and also has a simple installer. It currently has no visuals what so ever, as I never had time to create them, another project stopped me, but you could easily customise it to suit your site design.

As Warbird has said, many services don't accept emails if there is no sender, or if other header information is missing, so make sure you include everything.

Share this post


Link to post
Share on other sites

Hi rvalkass,I am interested in your mailing list script. I want to know weather it handles mail sent to a group id or it is only a one way script where users can't send mails to list.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.