Jump to content

Php Emails


ShaolinF

Recommended Posts

Hi Guys,

 

When a client submits a form an email is dispatched via php to the email address. The problem is mainly with hotmail. When the email is sent, the message has a "!" sign next to it and at the top of the email the following message is listed:

 

The sender of this message, confirm+XCACaMXx@facebookmail.com, could not be verified by Sender ID. Learn more about Sender ID.

 

Some of my clients might get worried and delete the message. Is there a way I can overcome this problem ? Here is my script:

 

$subject = "Thank you for your email";
$headers = "From: Sender <email@domain.com>\n";
$headers .= "MIME-Version: 1.0\n"; 
$headers .= "Content-type: text/html; charset=iso-8859-1\n"; 
$headers .= "Reply-To: Sender <email@domain.com>\n"; 
$headers .= "X-Priority: 1\n"; 
$headers .= "X-MSmail-Priority: High\n"; 
$headers .= "X-mailer: My mailer"; 

$message .= '<a href="http://www.mysite.com/">Message goes here</a>';

mail ($to, $subject, $message, $headers) 

Link to comment
Share on other sites

Why don't you tell us the email address you are actually putting in as the sender.  If its a bs domain your putting in, then I doubt there is a way around it.  If hotmail believes your server is potentially black mailed then you have to get your server on the "good list."  Are you sending from a static or dynamic IP address btw.

 

Answer those questions for us please.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

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.