In PHP, you provide a mail-sending function mail function that sends e-mail directly in your program, but it requires the server to support SendMail
Or you must set up a mail-sending server that does not require relaying, but it is almost impossible to find a message-sending relay that does not require authentication.
So using mail functions often fails to send email successfully.
If you are familiar with the SMTP protocol, combined with the socket function can write efficient and stable mail delivery program, but for the general user is too difficult. Fortunately, the Internet has been a lot of other people write good mail delivery module, we only need to download simple call can be very convenient.
Here we recommend to users a very powerful PHP, Easy-to-use and free of the SMTP class module-phpmailer,
Phpmailer is a PHP function package that is used to send e-mail. The features it provides include:
*. Specify multiple recipients, CC addresses, dark addresses, and reply-to addresses when sending mail
*. Support for multiple message codes including: 8bit,base64,binary and Quoted-printable
*. Support SMTP Authentication
*. Support for redundant SMTP servers
*. Support for messages with attachments and HTML-formatted messages
*. Custom message headers
*. Support for embedding pictures in messages
*. Flexible Commissioning
*. tested and compatible SMTP servers include: Sendmail,qmail,postfix,imail,exchange, etc.
*. can be run on any platform
After downloading the component, write the code as follows to enable PHP to send messages online.
One: HTML programs
<body>
Please enter the <font color= "#FF6666" > Mail </font> Email address:
<form name= "Phpmailer" action= "send.php" method= "POST" >
<input type= "hidden" name= "submitted" value= "1"/>
e-mail address: <input type= "text" size= "a" name= "addresses"/>
<br/>
<input type= "Submit" value= "Send"/>
</form>
</body>
Second: PHP program
<?php
Require ("class.phpmailer.php");//The downloaded file must be placed in the directory where the file is located
$mail = new Phpmailer ()//create Mail Send Class
$address = $_post[' address '];
$mail->issmtp ();//Send Using SMTP
$mail->host = "mail.xxxxx.com"; Your Business Post office domain name
$mail->smtpauth = true; To enable the SMTP authentication feature
$mail->username = "user@xxxx.com"; Post Office username (please fill in the full email address)
$mail->password = "Hu Jintao"; Post Office password
$mail->from = "user@xxxx.com"; Mail Sender email Address
$mail->fromname = "Your name";
$mail->addaddress ("$address", "");//recipient address, can be replaced by any e-mail message that you want to receive mail, in the form of addaddress ("addressee Email", "Recipient Name")
$mail->addreplyto ("", "");
$mail->addattachment ("/var/tmp/file.tar.gz");//Add Attachments
$mail->ishtml (TRUE);//Set email format to HTML//whether to use HTML format
$mail->subject = "phpmailer test mail"; Message headers
$mail->body = "Hello, this is Test mail"; Message content
$mail->altbody = "This are the body in plain text for non-html mail clients"; Additional information that can be omitted
if (! $mail->send ())
{
Echo message failed to send. <p> ";
echo "Error Reason:". $mail->errorinfo;
Exit
}
echo "Mail sent successfully";
?>