Jump to content

How to send email in inbox not in bulk


noobh

Recommended Posts

For sending email to inbox, you have to set some headers in your email header section. Following are some of the headers that u can provide :

 

$headers .= 'From: [email protected]' . "\r\n"; // Sender's Email Address

$headers .= 'Return-Path: MyName <[email protected]> /n'; // Indicates Return-path

$headers .= 'Reply-To: MyName <[email protected]> /n'; // Reply-to Address

$headers .= 'X-Mailer: PHP/' . phpversion(); // For X-Mailer

$headers .= '"Content-type: text/plain; charset=iso-8859-1"'; // Set Content Type For Text Email

 

Add this headers and try again to send the email.

 

;)

  • 3 years later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.