我正在关注本指南: http ://www.w3schools.com/php/php_mail.asp
因此,按照本指南,我真的可以通过在 Chrome 或其他互联网浏览器中打开这个我称为“email.php”的页面来向自己发送电子邮件(someemail@website.com)吗?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<h1> Email Application </h1>
<?php
$to = "someemail@website.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "Some Guy";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>
</body>
</html>
我尝试在本地运行上面看到的 email.php,但没有任何反应。我需要将 email.php 放在服务器上吗?
我目前正在处理联系表,我希望将在联系表字段中输入的所有信息发送到指定的电子邮件地址。我正在为一家公司的网站做这个。