我正在使用PHPMailer从网站发送通知电子邮件。当我测试它时,我使用Gmail SMTP设置它并且它正常工作。现在,在制作时,我需要将其设置为从客户的LOCAL电子邮件地址(username@domain.local)发送电子邮件。客户拥有自己的电子邮件服务器。
在这种情况下是否仍然使用SMTP?我尝试研究它很多但我真的找不到任何参考。
$mail->IsSMTP();
$mail->SMTPDebug = 1;
$mail->SMTPAuth = true;
$mail->SMTPSecure = "ssl";
$mail->Host = "domain.local"; // or an IP that was also provided by the customer labeling it as "host" for the email server
$mail->Port = 25;
$mail->Username = "username@domain.local";
$mail->Password = "password";
$mail->SetFrom('username@domain.local', 'Webname');
$mail->[...]
任何帮助将不胜感激。感谢。