打开链接:https://sg2plmcpnl487074.prod.sin2.secureserver.net:2083/cpsess2908892685/frontend/paper_lantern/email_accounts/index.html#/list
点击“Create”
填写邮箱信息
打开链接:https://dcc.godaddy.com/manage/your_domain/dns,配置DNS
邮件服务器配置 https://sg2plmcpnl487074.prod.sin2.secureserver.net:2083/cpsess2908892685/frontend/paper_lantern/mail/clientconf.html
代码
<?phpuse PHPMailer\PHPMailer\Exception;
use PHPMailer\PHPMailer\PHPMailer;
try{$email = new PHPMailer(TRUE);$email->isSMTP();// $email->SMTPDebug = 2;// 调试输出格式// $mail->Debugoutput = 'html';$email->SMTPAuth = TRUE;$email->SMTPAutoTLS = FALSE;$email->SMTPSecure = "ssl";$email->Host = "网站地址";$email->Port = 465;$email->Username = "support@网站地址";$email->Password = "邮箱密码";$email->setFrom("support@网站地址");$email->addAddress("收件人邮箱");$email->isHTML(TRUE);$email->Body = "My HTML Code";$email->Subject = "My Subject";$email->send();}catch (Exception $e){$email->ErrorInfo;}}
参考:https://blog.csdn.net/getyouwant/article/details/83717715