如何在不安装SMTP服务器的情况下从PHP发送电子邮件?

2022-08-30 17:14:55

我在专用服务器上有一个经典的LAMP平台(Debian,Apache2,PHP5和MySQL)。

我听说PHPMailer可以在没有安装SMTP的情况下发送电子邮件。PHPMailer是最好的选择吗?


答案 1

是的,PHPMailer是一个非常好的选择。

例如,如果您愿意,您可以使用Google的免费SMTP服务器(就像从您的gmail帐户发送一样),或者您可以跳过smtp部分并将其作为典型的mail()调用发送,但使用所有正确的标头等。它提供多部分电子邮件,附件。

设置也很容易。

<?php

$mail = new PHPMailer(true);

//Send mail using gmail
if($send_using_gmail){
    $mail->IsSMTP(); // telling the class to use SMTP
    $mail->SMTPAuth = true; // enable SMTP authentication
    $mail->SMTPSecure = "ssl"; // sets the prefix to the servier
    $mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server
    $mail->Port = 465; // set the SMTP port for the GMAIL server
    $mail->Username = "your-gmail-account@gmail.com"; // GMAIL username
    $mail->Password = "your-gmail-password"; // GMAIL password
}

//Typical mail data
$mail->AddAddress($email, $name);
$mail->SetFrom($email_from, $name_from);
$mail->Subject = "My Subject";
$mail->Body = "Mail contents";

try{
    $mail->Send();
    echo "Success!";
} catch(Exception $e){
    //Something went bad
    echo "Fail - " . $mail->ErrorInfo;
}

?>

答案 2

您也可以使用phpmailer使用默认的php mail()函数发送。

我建议不要尝试使用mail()函数手动做事,而是使用phpmailer并将其配置为使用mail()。

我想指出的是,即使您没有使用SMTP连接自己发送邮件,mail()函数也将使用SMTP连接或服务器的sendmail程序来发送电子邮件,因此必须对其进行配置才能正常工作。


推荐