该文件的标题为frontend.php
<!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>Mail</title>
</head>
<body>
<form method="post" action="backend.php">
<label>To</label>
<input type="email" name="reciever">
<br>
<label>Subject</label>
<input type="text" name="subject">
<br>
<label>Message</label>
<input type="text" name="message"/>
<br>
<input type="submit" value="Send Mail" name="sendMail" />
</form>
</body>
</html>
此文件名为&#34; backend.php&#34;
<?php
$from = "waqas.sajid.ncm@gmail.com";
$email=$_POST['reciever'];
$subject=$_POST['subject'];
$messge=$_POST['message'];
ini_set("SMTP","aspmx.l.google.com");
mail($email, $subject, $messge, "From:".$from);
?>
但它不起作用......为什么?正在使用XAMPP。
答案 0 :(得分:0)
Lolx,您无法在xampp或本地服务器中通过此常规方法发送电子邮件... 在实时服务器上传代码,然后检查....
本地服务器不允许发送电子邮件..您需要其他服务器或使您的代码生效...