在这里,我是新的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>Send Mail</title>
</head>
<body>
<?php
if( isset($_POST['email']) && isset($_POST['subject']) && isset($_POST['msg']) )
{
$to = $_POST['email'];
$subject = $_POST['subject'];
$msg = $_POST['msg'];
$from = "[email protected]";
$headers = "From: $from";
mail($to,$subject,$msg,$headers);
echo "Mail Send";
}
?>
<form action="sendMail.php" method="post">
<div>
<table style="width:100%;">
<tr>
<td>Email:</td>
<td><input type="text" name="email" /></td>
<td>Subject:</td>
<td><input type="text" name="subject" /></td>
</tr>
<tr>
<td>Message</td>
<td><input type="text" name="msg" /></td>
<td colspan="2"> <input type="submit" value="Send Mail" /></td>
</tr>
</table>
</div>
</form>
</body>
</html>
在运行这个页面之后,我得到了错误
"Warning: mail() [function.mail]: SMTP server response: 554 The message was rejected because it contains prohibited virus or spam content in D:\Hosting\5676400\html\myPhp\temp\admin\sendMail.php on line 17"
最佳答案
<?php
$to = "[email protected]";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "[email protected]";
$headers = "From: $from";
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>