【发布时间】:2020-01-25 02:44:53
【问题描述】:
我想用 ci 连接我的 office 365 邮件,但这不能连接我使用来自 godaddy 的 namecheap 服务器 office 365
require('/home/shoodkoi/public_html/emailcampaign/phpmailer/class.phpmailer.php');
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->SMTPDebug = 1;
$mail->SMTPAuth = TRUE;
$mail->SMTPSecure = "tls";
$mail->Port= 587;
$mail->Username='';
$mail->Password= '';
$mail->Host= "smtp.office365.com";
$mail->Mailer = "smtp";
$mail->SetFrom('no-reply@gbosss.co.in', 'Gbosss');```
【问题讨论】:
标签: php codeigniter email office365