-3
我在plesk上有一個域,我想弄清楚smtp地址和端口,以便在我的聯繫我們web窗體中使用它們 我已經使用了webmail.domainname(也使用了mail.domainname和smtp .domainname),但因此未工作 任何建議,將不勝感激SMTP地址和端口
我在plesk上有一個域,我想弄清楚smtp地址和端口,以便在我的聯繫我們web窗體中使用它們 我已經使用了webmail.domainname(也使用了mail.domainname和smtp .domainname),但因此未工作 任何建議,將不勝感激SMTP地址和端口
你實際上並不需要使用它們,你可以嘗試這樣的:
$mail_to_send_to = "[email protected]";
$your_feedbackmail = "[email protected]";
$sendflag = $_REQUEST['sendflag'];
if ($sendflag == "send")
{
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;
$headers = "From: $your_feedbackmail" . "\r\n" . "Reply-To: $email" . "\r\n" ;
$a = mail($mail_to_send_to, "Feedback Form Results", $message, $headers);
if ($a)
{
print("Message was sent, you can send another one");
} else {
print("Message wasn't sent, please check that you have changed emails in the bottom");
}
}