我需要有关联系表格布局的帮助,这是我的问题:
当我收到来自我的联系表的邮件时,我的 /r 或 /n 似乎不起作用我将我的表单的所有内容都放在一行中,我不知道为什么。
这是我的代码:
<?php
if (isset($_POST)) {
$lastName = $_POST['lastName'];
$firstName = $_POST['firstName'];
$speciality = $_POST['speciality'];
$adress = $_POST['adress'];
$phone = $_POST['phone'];
$mailFrom = $_POST['email'];
$txt = $_POST['message'];
$to = "mymail@mymail.com";
$subject = utf8_decode("Expéditeur : ".$lastName." ".$firstName);
$message = 'Vous avez reçu un email de ' . $lastName . "\r\n" . $firstName . "\r\n" . $speciality . "\r\n" . $adress . "\r\n" . $phone . "\r\n" . $mailFrom . "\r\n" .$txt;
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";
$headers .= 'From: '.$mailFrom."\r\n";
$headers .= 'Reply-To: '.$mailFrom."\r\n";
mail($to, $subject, $message, $headers);
header("Location: /");
}
请任何人都可以帮助我。多谢。
翻阅古今