我想知道如何在用户向我的网站提交表单后向用户发送电子邮件..
背景:我正在重新启动我父亲在2002年关闭的网站,我们目前有一个欢迎/启动页面,说该网站即将推出。此页面要求用户输入要添加到启动列表的电子邮件。此表单使用“Web表单邮件程序”,如下所示:
<form action="/webformmailer.php" method="post">
他们的电子邮件将发送到我们选择的收件箱。我想做的是给这位用户发送一封电子邮件,上面写着感谢,期待更新,再次感谢等等。
我该怎么做?我不知道,任何帮助将不胜感激!!
答案 0 :(得分:1)
如果您想发送一个非常简单的纯文本电子邮件,那么您可以使用PHP mail()
功能,因为它可以快速完成。 (假设你的网站主机设置了sendmail)。否则SMTP functiosn是一个选项(上面的答案)。 但请确保验证所有用户提交的输入,以确保垃圾邮件发送者无法使用您的邮件 - 最重要的是,从电子邮件地址和用户名等中删除换行符。
但更好的选择是使用预先编写的库,因为这会消除大部分问题/问题。 SwiftMailer目前可能是最好的之一,因为它可以处理各种发送方法(SMTP,sendmail)和格式(文本,HTML等),并将有助于防止用于传播垃圾邮件的旅游表格。它也很好(如果你不使用IE浏览器 - 文档页面在IE中不起作用!)
如果你想发送附件或HTML电子邮件,那么也可以通过mail()
,但有点争吵让它在所有平台上运行。同样,SwiftMailer(和其他库)使这一点变得简单。所以也可以从图书馆开始。
答案 1 :(得分:0)
试试这个
<强> SMTPconfig.php 强>
<?php
//Server Address
$SmtpServer="127.0.0.1";
$SmtpPort="25"; //default
$SmtpUser="username";
$SmtpPass="password";
?>
<强> SMTPclass.php 强>
<?php
class SMTPClient
{
function SMTPClient ($SmtpServer, $SmtpPort, $SmtpUser, $SmtpPass, $from, $to, $subject, $body)
{
$this->SmtpServer = $SmtpServer;
$this->SmtpUser = base64_encode ($SmtpUser);
$this->SmtpPass = base64_encode ($SmtpPass);
$this->from = $from;
$this->to = $to;
$this->subject = $subject;
$this->body = $body;
if ($SmtpPort == "")
{
$this->PortSMTP = 25;
}
else
{
$this->PortSMTP = $SmtpPort;
}
}
function SendMail ()
{
if ($SMTPIN = fsockopen ($this->SmtpServer, $this->PortSMTP))
{
fputs ($SMTPIN, "EHLO ".$HTTP_HOST."\r\n");
$talk["hello"] = fgets ( $SMTPIN, 1024 );
fputs($SMTPIN, "auth login\r\n");
$talk["res"]=fgets($SMTPIN,1024);
fputs($SMTPIN, $this->SmtpUser."\r\n");
$talk["user"]=fgets($SMTPIN,1024);
fputs($SMTPIN, $this->SmtpPass."\r\n");
$talk["pass"]=fgets($SMTPIN,256);
fputs ($SMTPIN, "MAIL FROM: <".$this->from.">\r\n");
$talk["From"] = fgets ( $SMTPIN, 1024 );
fputs ($SMTPIN, "RCPT TO: <".$this->to.">\r\n");
$talk["To"] = fgets ($SMTPIN, 1024);
fputs($SMTPIN, "DATA\r\n");
$talk["data"]=fgets( $SMTPIN,1024 );
fputs($SMTPIN, "To: <".$this->to.">\r\nFrom: <".$this->from.">\r\nSubject:".$this->subject."\r\n\r\n\r\n".$this->body."\r\n.\r\n");
$talk["send"]=fgets($SMTPIN,256);
//CLOSE CONNECTION AND EXIT ...
fputs ($SMTPIN, "QUIT\r\n");
fclose($SMTPIN);
//
}
return $talk;
}
}
?>
<强>的index.php 强>
<?php
include('SMTPconfig.php');
include('SMTPClass.php');
if($_SERVER["REQUEST_METHOD"] == "POST")
{
$to = $_POST['to'];
$from = $_POST['from'];
$subject = $_POST['sub'];
$body = $_POST['message'];
$SMTPMail = new SMTPClient ($SmtpServer, $SmtpPort, $SmtpUser, $SmtpPass, $from, $to, $subject, $body);
$SMTPChat = $SMTPMail->SendMail();
}
?>
<form method="post" action="">
To:<input type="text" name="to" />
From :<input type='text' name="from" />
Subject :<input type='text' name="sub" />
Message :<textarea name="message"></textarea>
<input type="submit" value=" Send " />
</form>
答案 2 :(得分:0)
您可以使用此代码以PHP格式发送电子邮件。 :
<?php
require_once "Mail.php";
$from = "<from.gmail.com>";
$to = "<to.yahoo.com>";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
$host = "ssl://smtp.gmail.com";
$port = "465";
$username = "myaccount@gmail.com"; //<> give errors
$password = "password";
$headers = array ('From' => $from,
'To' => $to,
'Subject' => $subject);
$smtp = Mail::factory('smtp',
array ('host' => $host,
'port' => $port,
'auth' => true,
'username' => $username,
'password' => $password));
$mail = $smtp->send($to, $headers, $body);
if (PEAR::isError($mail)) {
echo("<p>" . $mail->getMessage() . "</p>");
} else {
echo("<p>Message successfully sent!</p>");
}
?> <!-- end of php tag-->
如果您想使用PHP发送大量电子邮件,那么您可以找到HERE.
以上的解决方案答案 3 :(得分:0)
您可以使用php的mail()
函数或使用类似PHPmailer(download from here)的类。后者给了我更好的结果。
<?php
require_once('../class.phpmailer.php');
$mail = new PHPMailer(); // defaults to using php "mail()"
$body = file_get_contents('contents.html');
$body = preg_replace('/[\]/','',$body);
$mail->SetFrom('name@yourdomain.com', 'First Last');
$mail->AddReplyTo("name@yourdomain.com","First Last");
$address = "whoto@otherdomain.com";
$mail->AddAddress($address, "John Doe");
$mail->Subject = "PHPMailer Test Subject via mail(), basic";
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->MsgHTML($body);
$mail->AddAttachment("images/phpmailer.gif"); // attachment
$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
?>
这非常易于使用,并且需要最少的设置。您可以使用$_POST
设置接收方地址等。您可能需要先验证电子邮件地址。使用PHP validation