如果輸入的電子郵件與[email protected]匹配,您是否知道爲什麼此表單上的[輸入電子郵件]字段只能到達[email protected]?PHP電子郵件表格將不會以不同的輸入電子郵件地址提交
如果我輸入的電子郵件地址不是$ to =中列出的電子郵件地址,那麼電子郵件將不會發送。
$fieldname = 'images';
if ($_POST){
// we'll begin by assigning the To address and message subject
$to="[email protected]";
$subject="Registration";
$from = "<".stripslashes($_POST['email']).">";
// generate a random string to be used as the boundary marker
$mime_boundary="==Multipart_Boundary_x".md5(mt_rand())."x";
// now we'll build the message headers
$headers = "From: $from\r\n" .
"MIME-Version: 1.0\r\n" .
"Content-Type: multipart/mixed;\r\n" .
" boundary=\"{$mime_boundary}\"\n";
這是Pastebin。
它可能發送,但被標記爲垃圾郵件 –
我與託管服務提供商合作並創建了電子郵件地址的子域,他們測試了它,並且工作正常。此外,沒有郵件在垃圾郵件中。 – bunnycode
您可能想要傳遞完整的代碼,包括PHP發送電子郵件的位置。 – pivemi