我會讓它變得非常簡單。我想通過php發送電子郵件。現在這裏是代碼。如何格式化PHP電子郵件
$line = '\n';
$a = "Customer Phone: ";
$b = "Customer Last Name: ";
$message = $a.$number.$line.$b.$LastName;
$to = "[email protected]";
$subject = "Umrah Booking";
$from = $mailer;
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
這裏是輸出:
Customer Phone: 0712345678\nCustomer Last Name: Showkot
和電子郵件顯示發送者沒有。它說nobody
。
我希望電子郵件將看起來像:
Customer Phone: 0712345678
Customer Last Name: Showkot
,我也想表明,電子郵件是從[email protected]
+1解釋_why_並不僅僅是_what_做。我正要評論_why_不同的引號是必要的,但你剛剛添加了這個。 – Wiseguy
謝謝你......我剛剛登錄說問題解決了!無論如何非常感謝:-) – forgotten