about send mail with php

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Marise

    about send mail with php

    Hello,

    I developed a PHP to send confirmation mail to my users.
    The users complainthat the mail goes to the SPAM section each time.
    What is the reason for this? I tested it several times, and I always get
    the same result. The mail always gets spammed. This is very bad because
    if a user doesn't get the confirmation, they won't even think that it's in
    their
    spam mail. The mail would therefore get stuck in their spam mail and I'll
    lose my clients.

    Looking forward to your reply.

    Thanks!


  • r0g

    #2
    Re: about send mail with php

    Marise wrote:
    Hello,
    >
    I developed a PHP to send confirmation mail to my users.
    The users complainthat the mail goes to the SPAM section each time.
    What is the reason for this? I tested it several times, and I always get
    the same result. The mail always gets spammed. This is very bad because
    if a user doesn't get the confirmation, they won't even think that it's in
    their
    spam mail. The mail would therefore get stuck in their spam mail and I'll
    lose my clients.
    >
    Looking forward to your reply.
    >
    Thanks!
    >
    >
    Make sure you include a "From:" line in every message.

    Also check if your hosting supports Domain Keys and SPF records and if
    so use them.

    Roger.

    Comment

    • C. (http://symcbean.blogspot.com/)

      #3
      Re: about send mail with php

      On 26 Sep, 17:36, "Marise" <s...@sss.sswro te:
      Hello,
      >
      I developed a PHP to send confirmation mail to my users.
      The users complainthat the mail goes to the SPAM section each time.
      What is the reason for this? I tested it several times, and I always get
      the same result. The mail always gets spammed. This is very bad because
      if a user doesn't get the confirmation, they won't even think that it's in
      their
      spam mail. The mail would therefore get stuck in their spam mail and I'll
      lose my clients.
      >
      Looking forward to your reply.
      >
      Thanks!
      There is no officially agreed method for seperating spam from ham - if
      there was it would be something of an oxymoron - the spammers would
      know exactly how to masquerade as ham.

      There are things you can do to reduce the detection of spam
      - get hold of spam assassin and read how its rules are configured to
      identify spam.
      - Make sure you've got RMX and SPF records in your DNS,
      - do not try to send mail from a known DHCP address.
      - make sure you've included all the headers which appear in mails
      detected as ham (e.g. fake an X-mailer)

      But really the only thing that really works is educating your users -
      good luck.

      C.

      Comment

      Working...