我想使用php发送电子邮件,我使用了这段代码:
underscore
我所做的是将此文件保存为example.php文件并将其上传到我的ftp中的目录。然后我使用浏览器转到<script>
我认为代码运行但无法发送电子邮件。
我应该在cpanel或服务器中配置其他任何内容以使用此代码吗?
答案 0 :(得分:-1)
<?php
$to = "abc@example.com";
$subject = "This is subject of mail";
$message = "
<html>
<head>
<title>".$subject."</title>
</head>
<body>
<p>This here is the description of mail</p>
</body>
</html>
";
// Always set content-type when sending HTML email
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
// More headers
$headers .= 'From: thesender@example.com' . "\r\n";
mail($to,$subject,$message,$headers);
echo "<script> alert('Form Succesfully Submitted'); window.location.href='contact.php'; window.location.href='contact.php'; </script>";
?>
试一试。 如果你需要Cc:,或者Bcc在header变量之后包含它们。