2013-09-30 116 views
1

我使用下面的代碼通過聯繫表單發送電子郵件。 問題是電子郵件每次都進入垃圾郵件框(在Outlook,Gmail等)。我懷疑這是由於電子郵件正文中存在網址(網頁網址)。 因此,我想知道是否有一些解決方法(除了在gmail和outlook中將這些電子郵件標記爲非垃圾郵件),以便保留URL(我想保留它)但將電子郵件視爲垃圾郵件。也許通過重新構建URL,使其看起來不像URL?當然,大公司有提示&的技巧呢? 非常感謝避免通過PHP聯繫表格發送電子郵件被視爲垃圾郵件

<?php 
// Email Submit 
// Note: filter_var() requires PHP >= 5.2.0 
if (isset($_POST['email']) && isset($_POST['name']) && isset($_POST['message']) && filter_var($_POST['email'], FILTER_VALIDATE_EMAIL)) { 

    // detect & prevent header injections 
    $test = "/(content-type|bcc:|cc:|to:)/i"; 
    foreach ($_POST as $key => $val) { 
    if (preg_match($test, $val)) { 
     exit; 
    } 
    } 

    //send email 
    mail("[email protected]", "Nouveau message de: ".$_POST['name'], $_POST['message'] ."\n From site: ". $_SERVER['HTTP_REFERER']., "From:" . $_POST['email'] . "\r\n" . "BCC: [email protected]"); 

} 
?> 

回答

2

發送標題用它,就像這樣:

$to  = '[email protected]'; 
$header = "From: [email protected]\r\n"; 
$header.= "MIME-Version: 1.0\r\n"; 
$header.= "Content-Type: text/html; charset=utf-8\r\n"; 
$header.= "X-Priority: 1\r\n"; 

mail($to, $subject, $message, $header); 
+0

感謝。你能幫我調整我的代碼嗎?語法看起來完全不同:/ – Greg

相關問題