phpmailer邮件发送测试-bbs.it-home.org- 请你输入收信的邮箱地址:
2、发邮件程序 send.php
/** - * PHPMailer邮件发送
- * Edit bbs.it-home.org
- */
- require("class.phpmailer.php");
- $mail = new PHPMailer();
- $mail->CharSet = "gb2312"; // 这里指定字符集!如果是utf-8则将gb2312修改为utf-8
- $mail->Encoding = "base64";
- $address = $_POST['address'];
- $mail->IsSMTP(); // set mailer to use SMTP
- $mail->Host = "smtp.126.com"; // specify main and backup server
- $mail->SMTPAuth = true; // turn on SMTP authentication
- $mail->Username = ""; // SMTP username
- $mail->Password = "******"; // SMTP password
$mail->From = ""; - $mail->FromName = "rokaye";
- $mail->AddAddress("$address", "");
- //$mail->AddAddress(""); // name is optional
- //$mail->AddReplyTo("", "");
//$mail->WordWrap = 50; // set word wrap to 50 characters - //$mail->AddAttachment("/var/tmp/file.tar.gz"); // add attachments
- //$mail->AddAttachment("/tmp/image.jpg", "new.jpg"); // optional name
- //$mail->IsHTML(true); // set email format to HTML
$mail->Subject = "PHPMailer测试邮件"; - $mail->Body = "Hello,这是rokaye的测试邮件";
- $mail->AltBody = "This is the body in plain text for non-HTML mail clients";
if(!$mail->Send()) - {
- echo "Message could not be sent.
"; - echo "Mailer Error: " . $mail->ErrorInfo;
- exit;
- }
echo "Message has been sent"; - ?>
有关乱码的问题,多是因为没有指定所要求的编码而引起的。
- $mail->CharSet = "gb2312"; // 指定字符集!如果是utf-8则将gb2312修改为utf-8
- $mail->Encoding = "base64";
-
这样操作后,就不会出现乱码了。
|