-1
我正在運行Debian服務器,併爲其他項目設置了mysql。 我希望能夠通過使用php發送電子郵件,該電子郵件將從我的服務器發送,甚至只需使用gmail帳戶憑據發送。Debian郵件服務器
我已經看到一些郵件服務器,但他們似乎都需要安裝在全新安裝的服務器上。
我曾嘗試:
$recipient = $_POST["recipient"];
$title = $_POST["title"];
$body = $_POST["body"];
$headers = 'From: [email protected]' . "\r\n" .
'Reply-To: [email protected]' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
$sendMail = mail($recipient, $title, $body, $headers);
if($sendMail == true)
{
echo "Message sent successfully...";
}
else
{
echo "Message could not be sent...";
}