0

我想知道在用户向我的网站提交表单后如何向他们发送电子邮件..

背景: 我正在重新启动一个我父亲在 2002 年关闭的网站,我们目前有一个欢迎/启动页面,上面说该网站很快就会回来。此页面要求用户输入他们的电子邮件以添加到启动列表中。此表单使用“网络表单邮件程序”,如下所示:

<form action="/webformmailer.php" method="post">

他们的电子邮件被发送到我们选择的收件箱。我想做的是向该用户发送一封电子邮件,其中包含感谢、期待更新、再次感谢等。

我该怎么办?我不知道,任何帮助将不胜感激!

4

4 回答 4

1

如果您想发送一封非常简单的纯文本电子邮件,那么您可以使用 PHPmail()函数,因为它很快就可以完成。(假设您的网络主机设置了 sendmail)。否则 SMTP 功能是一个选项(上面的答案)。但请确保您验证所有用户提交的输入,以确保您的邮件不会被垃圾邮件发送者使用- 最重要的是,从电子邮件地址和用户名等中删除换行符。

但是更好的选择是使用预先编写的库,因为这可以消除很多问题/问题。SwiftMailer可能是目前最好的之一,因为它可以处理各种发送方法(SMTP、sendmail)和格式(文本、HTML 等),并有助于防止使用游览表单来中继垃圾邮件。它的文档也很好(如果你不使用 IE - 文档页面在 IE 中不起作用!)

如果您想发送附件或 HTML 电子邮件,那么它也可以通过mail(),但要让它在所有平台上工作有点困难。同样,SwiftMailer(和其他库)使这变得简单。所以不妨从图书馆开始。

于 2012-11-27T06:42:11.920 回答
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;
} 
}
?>

索引.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>
于 2012-11-27T06:14:23.287 回答
0

您可以使用 php 的mail()函数或使用 PHPmailer 之类的类(从此处下载)。后者给了我更好的结果。

<?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设置收件人地址等。您可能需要先验证电子邮件地址。使用 javascript 的PHP 验证

于 2012-11-27T06:52:21.823 回答
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 发送大量电子邮件,那么您可以在这里找到解决方案。

于 2012-11-27T06:23:27.110 回答