我在一个网站上使用PHP,我想添加电子邮件功能。
我安装了WampServer。
如何使用PHP发送电子邮件?
我在一个网站上使用PHP,我想添加电子邮件功能。
我安装了WampServer。
如何使用PHP发送电子邮件?
当前回答
这是非常基本的方法发送纯文本电子邮件使用邮件功能。
<?php
$to = 'SomeOtherEmailAddress@Domain.com';
$subject = 'This is subject';
$message = 'This is body of email';
$from = "From: FirstName LastName <SomeEmailAddress@Domain.com>";
mail($to,$subject,$message,$from);
其他回答
这可以使用PHP的mail()函数实现。记住,邮件功能将不能在本地服务器上工作。
<?php
$to = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
'Reply-To: webmaster@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>
参考:
邮件
还可以查看PEAR邮件包PEAR mail Page
它似乎比内置的标准mail()函数健壮一些(如果标准函数不够的话)。
下面是该页面的一段摘录,展示如何使用它。PEAR邮件发送()用法
<?php
include('Mail.php');
$recipients = 'joe@example.com';
$headers['From'] = 'richard@example.com';
$headers['To'] = 'joe@example.com';
$headers['Subject'] = 'Test message';
$body = 'Test message';
$smtpinfo["host"] = "smtp.server.com";
$smtpinfo["port"] = "25";
$smtpinfo["auth"] = true;
$smtpinfo["username"] = "smtp_user";
$smtpinfo["password"] = "smtp_password";
// Create the mail object using the Mail::factory method
$mail_object =& Mail::factory("smtp", $smtpinfo);
$mail_object->send($recipients, $headers, $body);
?>
从PHP发送电子邮件的核心方法是使用其内置的mail()函数,但有几个现成的sdk可以简化集成:
Swiftmailer PHPMailer peppost(通过HTTP工作,因此可以避免SMTP端口阻塞问题) Sendmail
附注:我受雇于peppost公司。
你可以使用诸如邮戳、Sendgrid等邮件网络服务。
Sendgrid vs邮戳vs亚马逊SES和其他电子邮件/SMTP API提供商?
编辑:我现在只使用谷歌Gmail API。由于严格的过滤器,我在向雇主发送提醒邮件时遇到了麻烦。但只要你不发垃圾邮件,Gmail就可以工作。
你也可以在https://github.com/PHPMailer/PHPMailer上使用PHPMailer类。
它允许您使用邮件功能或透明地使用smtp服务器。它还可以处理基于HTML的电子邮件和附件,因此您不必编写自己的实现。
这个类是稳定的,它被许多其他项目使用,如Drupal、SugarCRM、Yii和Joomla!
下面是上面页面的一个例子:
<?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('joe@example.net', 'Joe User'); // Add a recipient
$mail->addAddress('ellen@example.com'); // Name is optional
$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';
}