我知道如何将 SMTP 与 PHPMailer 一起使用:
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->Host = "mail.yourdomain.com"; // sets the SMTP server
$mail->Username = "yourname@yourdomain"; // SMTP account username
$mail->Password = "yourpassword"; // SMTP account password
它工作正常。但我的问题是:
如何配置 PHPMailer 以默认使用这些设置,这样我每次发送邮件时都不必指定它们?