Results 1 to 4 of 4

Thread: phpmailer !

  1. #1
    Join Date
    Jul 2006
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default phpmailer !

    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?

  2. #2
    Join Date
    Sep 2005
    Posts
    882
    Thanks
    0
    Thanked 3 Times in 3 Posts

    Default

    There is nothing you can do about emails being caught as junk mail except educate your users on how to check their junk mail.

  3. #3
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    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.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  4. #4
    Join Date
    Aug 2006
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    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();

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •