我不确定如何通过电子邮件发送表单

时间:2015-12-23 07:09:26

标签: javascript php html email

在我的网站底部有一个"发送消息"按钮。我希望它能够获取消息和联系信息(电子邮件,姓名)并将其发送到我的电子邮件地址。我怎么可能这样做?顺便说一句,我是这个网站的新成员。

2 个答案:

答案 0 :(得分:0)

您可以使用PHP邮件功能。



SuspensionManager.KnownTypes.Add(typeof(List<GroceryApp.Models.OrderHistoryDataModel>));
        SuspensionManager.KnownTypes.Add(typeof(List<GroceryApp.Models.OrderItem>));
        SuspensionManager.KnownTypes.Add(typeof(GroceryApp.Models.OrderHistoryDataModel));
&#13;
&#13;
&#13;

答案 1 :(得分:0)

使用可以使用默认的PHP's mail()功能,也可以使用PHPMailer(邮件发送帮助程序)。两者都是安全和正确的。但如果你需要其他东西,那就使用PHPMailer。

1。使用PHP的mail()函数是可能的。请记住,邮件功能在本地服务器中不起作用。

<?php
$to      = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: from@example.com' . "\r\n" .
    'Reply-To: webmaster@example.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);
?> 

注意:如果您使用的是SMTP,则需要在本地服务器上配置SMTP。看看这个类似的post

2. 您还可以在https://github.com/PHPMailer/PHPMailer使用PHPMailer类。

它允许您使用邮件功能或透明地使用smtp服务器。它还处理基于HTML的电子邮件和附件,因此您不必编写自己的实现。

以上是上页中的示例:

<?php
require 'PHPMailerAutoload.php';

$mail = new PHPMailer;

$mail->isSMTP();                                      // Set mailer to use SMTP
$mail->Host = 'smtp1.example.com;smtp2.example.com';  // Specify main and backup SMTP servers
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'user@example.com';                 // SMTP username
$mail->Password = 'secret';                           // SMTP password
$mail->SMTPSecure = 'tls';                            // Enable encryption, 'ssl' also accepted

$mail->From = 'from@example.com';
$mail->FromName = 'Mailer';
$mail->addAddress('webmaster@example.com', 'Webmaster User');     // Add a recipient
$mail->addAddress('webmaster@example.com');               // Name is optional example
$mail->addReplyTo('info@example.com', 'Information');
$mail->addCC('cc@example.com');
$mail->addBCC('bcc@example.com');

$mail->WordWrap = 50;                                 // Set word wrap to 50 characters
$mail->addAttachment('/var/tmp/file.tar.gz');         // Add attachments
$mail->addAttachment('/tmp/image.jpg', 'new.jpg');    // Optional name
$mail->isHTML(true);                                  // Set email format to HTML

$mail->Subject = 'Here is the subject';
$mail->Body    = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';

if(!$mail->send()) {
    echo 'Message could not be sent.';
    echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
    echo 'Message has been sent';
}

如果需要,请使用addReplyToaddCCaddBCC

希望这对你有所帮助!