View Full Version : phpmailer !
XOTIC
07-30-2006, 02:21 AM
hey guys,
I'm newbie in Php and I want to creat a phpmailer for my website that sends html emails to inbox for more than 1 email because I got a mailing list in my website but when I tried to send an email they received it in the junk mail ..
any idea?
blm126
07-30-2006, 02:34 AM
There is nothing you can do about emails being caught as junk mail except educate your users on how to check their junk mail.
djr33
07-30-2006, 06:24 AM
Something about the way it is being sent makes it seem like junk.
The fact that it is autogenerated has something to do with it, or perhaps you really are spamming. Since you probably aren't, it's likely that their email programs just see it as that. Perhaps you should look at what you're sending and see if there is any way to make it a bit more "personal" or something.
Or, just use php to compile the emails and output for you, then send manually (once for all emails) yourself, so it isn't autogenerated.
As blm said, though, it's really not something you can control, unless you can make it less spam-like.
zerofill
08-05-2006, 04:47 AM
Make sure you are sending it from a valid domain (Can have a reverse lookup and verified) and send headers...
$headers = 'From: noreply@blah.net' . "\r\n" .
'Reply-To: noreply@blah.net' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.