📜  发送电子邮件代码 - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:40.003000             🧑  作者: Mango

代码示例1
$to = 'user@example.com'; $from = 'sender@email.com'; $fromName = 'Sender_Name';  $subject = "Send Text Email with PHP by CodexWorld";  $message = "First line of text\nSecond line of text";  // Additional headers $headers = 'From: '.$fromName.'<'.$from.'>';  // Send email if(mail($to, $subject, $message, $headers)){    echo 'Email has sent successfully.'; }else{    echo 'Email sending failed.'; }