我想知道如何讓SMTP服務器使用PHPMailer
發送帶有我創建的電子郵件的自動電子郵件([email protected])。如何在PHPMailer中指定SMTP服務器?
我的網絡主機不提供一個。我帶了我的域名OnlyDomains
,我的虛擬主機是000Webhost
。
<?php
require './PHPMailer-master/PHPMailerAutoload.php';
$mail = new PHPMailer;
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = ''; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = '[email protected]'; // SMTP username
$mail->Password = '********'; // SMTP password
$mail->SMTPSecure = 'tls';
$mail->From = '[email protected]';
$mail->FromName = 'Admin';
$mail->addAddress('[email protected]'); // Name is optional
$mail->WordWrap = 50; // Set word wrap to 50 characters
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'swag';
$mail->Body = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
if(!$mail->send()) {
echo 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent';
}
?>
你有一個控制面板一樣的cPanel爲您的主機服務? – HddnTHA
你應該看看他們是否在主機上使用'sendmail'。使用'sendmail'不需要STMP。查看'PHPMailer()'的文檔和示例,顯示庫中有一個'isSendmail();'方法。看看我的答案瞭解更多細節。 – JakeGould