phpMailer 配置 企业邮局 163

PHPMailer的两种配置,记录一下,差别在一个要写完整邮件地址,一个只要填@前面的部分。一、自己的企业邮局发信$mail             = new PHPMailer();
IsSMTP(); // telling the class to use SMTP$mail->Host       = "SMTPDebug  = 0;                     // enables SMTP debug information (for testing)$mail->SMTPAuth   = true;                  // enable SMTP authentication$mail->Host       = "mail.52shici.com"; // sets the SMTP server$mail->Port       = 25;                    // set the SMTP port for the GMAIL server$mail->Username   = ""; // SMTP account username     email地址要完整Password   = "123456789";        // SMTP account password
注册成为52shici.com的会员";(另外要设置好域名MX记录,略)二、通过163转发$mail             = new PHPMailer();IsSMTP(); // telling the class to use SMTP$mail->Host       = "smtp.163.com"; // SMTP server$mail->SMTPDebug  = 0;                     // enables SMTP debug information (for testing)$mail->SMTPAuth   = true;                  // enable SMTP authentication$mail->Host       = " Port       = 25;                    // set the SMTP port for the GMAIL server$mail->Username   = "只要@前面的部分Password   = "123456789";        // SMTP account password$mail->SetFrom('lojinshui@163.com','52shici.com');$mail->AddReplyTo("lojinshui@163.com","52shici.com");$subject="感谢您注册成为52shici.com的会员"; $mail->Subject    = "=?utf-8?B?".base64_encode($subject)."?=";  

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...