// from the form
$name = trim(strip_tags($_POST['name']));
$email = trim(strip_tags($_POST['email']));
$message = htmlentities($_POST['message']);
// set here
$subject = "Contact form submitted!";
$to = '[email protected]';
$body = HTML
$message
HTML;
$headers = "From: $email\r\n";
$headers .= "Content-type: text/html\r\n";
// send the email
mail($to, $subject, $body, $headers);
// redirect afterwords, if needed
header('Location: thanks.html');
問題是,天氣與否,你可以在html電子郵件正文中插入一個php if語句或將其添加到該語句中的最佳方式。我正在創建詳細的廣告資源,一旦提交,就需要通過電子郵件發送給電子郵件。但我不想以電子郵件的完整清單(包括空輸入),它應該只通過電子郵件有其他東西比0的領域我在想:你可以在php電子郵件中插入if語句
if ($armChair > 0) { echo 'Arm Chairs: ' . $_POST['armChair']; } ]
但它似乎並沒有實際工作... 有任何想法嗎?
顯然你是新來的php甚至編程。你需要了解更多的基礎,消息可以是任何你想要的,你可以使用邏輯來構造它,但是你不會迴應它,你連接,直到你得到最終的消息將被髮送。 – Leite