我安装了WAMPSERVER。
如何使用PHP发送电子邮件?
#1 楼
使用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);
?>
参考:
http://php.net/手册/zh/function.mail.php
评论
如果我需要从本地服务器发送电子邮件怎么办。我的意思是有什么办法可以访问最近的邮件服务器,并使其发送邮件给我。我的意思是我可以找到yahoo邮件服务器的地址,然后将其用于邮件目的...这可能吗?
–user590849
2011-3-17在5:42
您需要在本地服务器上配置SMTP。看看这个类似的帖子stackoverflow.com/questions/4652566/php-mail-setup-in-xampp
– Muthu Kumaran
2011-3-17在5:48
您好,@ MuthuKumaran,如果该邮件是垃圾邮件,是否有解决此问题的好方法,请回答。
–穆罕默德·阿希库扎曼(Muhammad Ashikuzzaman)
2014年12月2日19:22
@MuhammadAshikuzzaman您无法解决PHP中的垃圾邮件问题。如果仍然有用,请在适当的StackExchange网站上提出一个新问题。
– UliKöhler
15年7月26日在1:58
如何确定或验证这在我的本地服务器上是否有效?如果不可能的话,请提出一些替代方案。谢谢。
–abhishah901
16年8月22日在16:55
#2 楼
您还可以在https://github.com/PHPMailer/PHPMailer中使用PHPMailer类。它允许您透明地使用mail函数或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';
}
评论
如果不使用作曲家:请使用PHPMailer \ PHPMailer \ PHPMailer;使用PHPMailer \ PHPMailer \ Exception; require_once('src / PHPMailer.php'); require_once('src / Exception.php');
–机房
19年1月28日在12:40
#3 楼
如果您对html格式的电子邮件感兴趣,请确保在标题中传递Content-type: text/html;
。示例:// multiple recipients
$to = 'aidan@example.com' . ', '; // note the comma
$to .= 'wez@example.com';
// subject
$subject = 'Birthday Reminders for August';
// message
$message = '
<html>
<head>
<title>Birthday Reminders for August</title>
</head>
<body>
<p>Here are the birthdays upcoming in August!</p>
<table>
<tr>
<th>Person</th><th>Day</th><th>Month</th><th>Year</th>
</tr>
<tr>
<td>Joe</td><td>3rd</td><td>August</td><td>1970</td>
</tr>
<tr>
<td>Sally</td><td>17th</td><td>August</td><td>1973</td>
</tr>
</table>
</body>
</html>
';
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Additional headers
$headers .= 'To: Mary <mary@example.com>, Kelly <kelly@example.com>' . "\r\n";
$headers .= 'From: Birthday Reminder <birthday@example.com>' . "\r\n";
$headers .= 'Cc: birthdayarchive@example.com' . "\r\n";
$headers .= 'Bcc: birthdaycheck@example.com' . "\r\n";
// Mail it
mail($to, $subject, $message, $headers);
有关更多详细信息,请检查php邮件功能。
评论
您好,我对这段代码感到厌倦,添加了3个收件人,1个Hotmail,1个Gmail和1个我的网站电子邮件。除了Hotmail,我收到了所有邮件。您知道为什么它不适用于Hotmail吗?
–antf
2014年11月4日在22:58
在这种情况下,请检查垃圾邮件文件夹。
– Sumoanand
2014年11月5日,12:28
我已经做到了,它不在垃圾邮件中,根本没有到达。我阅读了有关该主题的更多信息,似乎Hotmail需要一些特殊的标头,或者它不允许电子邮件通过其服务器...虽然我仍然没有找到解决方案。
–antf
2014年11月5日在16:47
我通过使用PHPMailer并在PHPMailer的电子邮件对象中输入带有SSL的电子邮件帐户数据来解决我的问题。
–antf
2014年11月5日20:13
如果消息包含HTML和php内容怎么办?
–user6761915
16/09/16在11:49
#4 楼
还要查看PEAR邮件程序包Pear Mail Page它似乎比内置的标准mail()函数更健壮(如果标准函数不够用的话)。
此页摘录显示了其用法。 PEAR Mail send()用法
<?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);
?>
评论
请在文件夹中提供您使用过的mail.php链接和所有其他相关文件的下载链接。谢谢
–穆罕默德·阿希库扎曼(Muhammad Ashikuzzaman)
2014年12月2日21:50
@Ashik在我的示例中引用的Mail.php文件是Pear Mail软件包的一部分。如果下载并安装Pear Mail程序包,则可以包含Mail.php。如果您点击上方的“ Pear Mail Page”链接,则会出现带有说明的Download链接。
–凯文S
2014年12月3日在14:24
#5 楼
对于大多数项目,这些天我都使用Swift邮件程序。这是一种非常灵活,优雅的面向对象的电子邮件发送方法,由向我们提供了流行的Symfony框架和Twig模板引擎的人创建。基本用法:
require 'mail/swift_required.php';
$message = Swift_Message::newInstance()
// The subject of your email
->setSubject('Jane Doe sends you a message')
// The from address(es)
->setFrom(array('jane.doe@gmail.com' => 'Jane Doe'))
// The to address(es)
->setTo(array('frank.stevens@gmail.com' => 'Frank Stevens'))
// Here, you put the content of your email
->setBody('<h3>New message</h3><p>Here goes the rest of my message</p>', 'text/html');
if (Swift_Mailer::newInstance(Swift_MailTransport::newInstance())->send($message)) {
echo json_encode([
"status" => "OK",
"message" => 'Your message has been sent!'
], JSON_PRETTY_PRINT);
} else {
echo json_encode([
"status" => "error",
"message" => 'Oops! Something went wrong!'
], JSON_PRETTY_PRINT);
}
请参阅官方文档以获取有关如何使用Swift邮件程序的更多信息。
评论
你好您的文档链接为Swift_SendmailTransport时,您说的是Swift_MailTransport。这是否意味着您所指的是较早版本的swift mailer,或者是拼写错误,还是我误会了某些东西?我需要安装旧版本的swift-mailer,因为我的服务器上没有php7。因此,我需要知道当前版本的文档是否与软件包的旧版本一起使用。谢谢。
–叶夫根尼·阿凡纳西耶夫
18年2月1日,0:47
@YevgeniyAfanasyev:我的答案是2年前的正确处理方式,但是自Swiftmailer v5.4.5起,Swift_MailTransport已被弃用。无论如何,如果您的项目无法使用PHP 7,则应使用Swiftmailer v5.4.9。这是仍支持PHP 5的最后一个稳定版本。有关版本v5.4.9的文档或有关v5.4.9和v6.0.2之间差异的详细信息,您可能需要联系Fabien Potencier或在Github上提出问题。
– John Slegers
18年2月1日在9:38
非常感谢你。因此,当发行版可用时,没有任何适用于较早版本的文档。很高兴知道。
–叶夫根尼·阿凡纳西耶夫
18年2月2日,下午1:34
#6 楼
试试这个:<?php
$to = "somebody@example.com";
$subject = "My subject";
$txt = "Hello world!";
$headers = "From: webmaster@example.com" . "\r\n" .
"CC: somebodyelse@example.com";
mail($to,$subject,$txt,$headers);
?>
#7 楼
对于将来的读者:如果其他答案不起作用(像我一样),请尝试以下操作:1。)下载PHPMailer,打开zip文件并将文件夹解压缩到项目目录中。 br />
3.)将提取的目录重命名为PHPMailer,并将以下代码写入您的php脚本内(该脚本必须位于PHPMailer文件夹之外)。
<?php
// PHPMailer classes into the global namespace
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
// Base files
require 'PHPMailer/src/Exception.php';
require 'PHPMailer/src/PHPMailer.php';
require 'PHPMailer/src/SMTP.php';
// create object of PHPMailer class with boolean parameter which sets/unsets exception.
$mail = new PHPMailer(true);
try {
$mail->isSMTP(); // using SMTP protocol
$mail->Host = 'smtp.gmail.com'; // SMTP host as gmail
$mail->SMTPAuth = true; // enable smtp authentication
$mail->Username = 'sender@gmail.com'; // sender gmail host
$mail->Password = 'password'; // sender gmail host password
$mail->SMTPSecure = 'tls'; // for encrypted connection
$mail->Port = 587; // port for SMTP
$mail->setFrom('sender@gmail.com', "Sender"); // sender's email and name
$mail->addAddress('receiver@gmail.com', "Receiver"); // receiver's email and name
$mail->Subject = 'Test subject';
$mail->Body = 'Test body';
$mail->send();
echo 'Message has been sent';
} catch (Exception $e) { // handle error.
echo 'Message could not be sent. Mailer Error: ', $mail->ErrorInfo;
}
?>
#8 楼
这是使用邮件功能发送纯文本电子邮件的非常基本的方法。<?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);
#9 楼
从PHP发送电子邮件的核心方法是使用其内置的mail()
函数,但是有一些现成的SDK可以简化集成:Swiftmailer
PHPMailer
Pepipost(可通过HTTP运行,因此可以避免SMTP端口阻塞问题)
Sendmail
PS我受雇于Pepipost。
评论
您受雇于Pepipost,并将Pepipost排在第3位。 +1
– GeneCode
19年1月28日在7:01
@GeneCode,如果最好,那就是。不管您是否受雇于此,都无所谓:) Swiftmailer和PHPMailer无疑是发送电子邮件的最佳开源工具之一(因此我将它们保留在1和2中)。但是,与此同时,它们具有某些限制和阻止程序,我们试图在Pepipost SDK中解决这些限制和阻止程序。
– Dibya Sahoo
19 Mar 5 '19 at 5:43
@DibyaSahoo对您有很高的评价
–skini82
11月19日下午13:36
#10 楼
本机PHP函数mail()
对我不起作用。它发出以下消息:503尝试将
发送到非本地电子邮件地址时,此邮件服务器需要身份验证
因此,我通常使用
PHPMailer
包我从GitHub下载了5.2.23版本。
我刚刚选择了2个文件并将其放入我的文件中源PHP根
class.phpmailer.php
class.smtp.php
在PHP中,需要添加文件
require_once('class.smtp.php');
require_once('class.phpmailer.php');
之后,它只是代码:
require_once('class.smtp.php');
require_once('class.phpmailer.php');
...
//----------------------------------------------
// Send an e-mail. Returns true if successful
//
// $to - destination
// $nameto - destination name
// $subject - e-mail subject
// $message - HTML e-mail body
// altmess - text alternative for HTML.
//----------------------------------------------
function sendmail($to,$nameto,$subject,$message,$altmess) {
$from = "yourcontact@yourdomain.com";
$namefrom = "yourname";
$mail = new PHPMailer();
$mail->CharSet = 'UTF-8';
$mail->isSMTP(); // by SMTP
$mail->SMTPAuth = true; // user and password
$mail->Host = "localhost";
$mail->Port = 25;
$mail->Username = $from;
$mail->Password = "yourpassword";
$mail->SMTPSecure = ""; // options: 'ssl', 'tls' , ''
$mail->setFrom($from,$namefrom); // From (origin)
$mail->addCC($from,$namefrom); // There is also addBCC
$mail->Subject = $subject;
$mail->AltBody = $altmess;
$mail->Body = $message;
$mail->isHTML(); // Set HTML type
//$mail->addAttachment("attachment");
$mail->addAddress($to, $nameto);
return $mail->send();
}
它就像一个饰物
评论
谢谢您的回答。您的建议与@norteo的回答相同。请记住,v5.2已过时,并且未收到安全更新。对于v6,您可以直接要求:使用PHPMailer \ PHPMailer \ PHPMailer;使用PHPMailer \ PHPMailer \ Exception; require_once('src / PHPMailer.php'); require_once('src / Exception.php');
–机房
19年1月28日在12:39
#11 楼
完整的代码示例..尝试一次。.
<?php
// Multiple recipients
$to = 'johny@example.com, sally@example.com'; // note the comma
// Subject
$subject = 'Birthday Reminders for August';
// Message
$message = '
<html>
<head>
<title>Birthday Reminders for August</title>
</head>
<body>
<p>Here are the birthdays upcoming in August!</p>
<table>
<tr>
<th>Person</th><th>Day</th><th>Month</th><th>Year</th>
</tr>
<tr>
<td>Johny</td><td>10th</td><td>August</td><td>1970</td>
</tr>
<tr>
<td>Sally</td><td>17th</td><td>August</td><td>1973</td>
</tr>
</table>
</body>
</html>
';
// To send HTML mail, the Content-type header must be set
$headers[] = 'MIME-Version: 1.0';
$headers[] = 'Content-type: text/html; charset=iso-8859-1';
// Additional headers
$headers[] = 'To: Mary <mary@example.com>, Kelly <kelly@example.com>';
$headers[] = 'From: Birthday Reminder <birthday@example.com>';
$headers[] = 'Cc: birthdayarchive@example.com';
$headers[] = 'Bcc: birthdaycheck@example.com';
// Mail it
mail($to, $subject, $message, implode("\r\n", $headers));
?>
#12 楼
您可以使用邮件网络服务,例如Postmark,Sendgrid等。Sendgrid对比Postmark对比Amazon SES和其他电子邮件/ SMTP API提供程序?
编辑:我只使用Google Gmail API现在。由于严格的过滤器,我无法向我的雇主组织发送提醒电子邮件。但是,只要您不向他人发送垃圾邮件,Gmail就可以正常工作。
#13 楼
使用此脚本发送电子邮件<h2>Test Mail</h2>
<?php
if (!isset($_POST["submit"]))
{
?>
<form method="post" action="<?php echo $_SERVER["PHP_SELF"];?>">
From: <input type="text" name="from"><br>
Subject: <input type="text" name="subject"><br>
Message: <textarea rows="10" cols="40" name="message"></textarea><br>
<input type="submit" name="submit" value="Click To send mail">
</form>
<?php
}
else
{
if (isset($_POST["from"]))
{
$from = $_POST["from"]; // sender
$subject = $_POST["subject"];
$message = $_POST["message"];
$message = wordwrap($message, 70);
mail("Test@example.com",$subject,$message,"From: $from\n");
echo "Thank you for sending an email";
}
}
?>
一旦按下“发送电子邮件”按钮,电子邮件将被发送到Test@example.com
#14 楼
<?php
include "db_conn.php";//connection file
require "PHPMailerAutoload.php";// it will be in PHPMailer
require "class.smtp.php";// it will be in PHPMailer
require "class.phpmailer.php";// it will be in PHPMailer
$response = array();
$params = json_decode(file_get_contents("php://input"));
if(!empty($params->email_id)){
$email_id = $params->email_id;
$flag=false;
echo "something";
if(!filter_var($email_id, FILTER_VALIDATE_EMAIL))
{
$response['ERROR']='EMAIL address format error';
echo json_encode($response,JSON_UNESCAPED_SLASHES);
return;
}
$sql="SELECT * from sales where email_id ='$email_id' ";
$result = mysqli_query($conn,$sql);
$count = mysqli_num_rows($result);
$to = "demo@gmail.com";
$subject = "DEMO Subject";
$messageBody ="demo message .";
if($count ==0){
$response["valid"] = false;
$response["message"] = "User is not registered yet";
echo json_encode($response);
return;
}
else {
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->SMTPAuth = true; // authentication enabled
$mail->IsHTML(true);
$mail->SMTPSecure = 'ssl';//turn on to send html email
// $mail->Host = "ssl://smtp.zoho.com";
$mail->Host = "p3plcpnl0749.prod.phx3.secureserver.net";//you can use gmail
$mail->Port = 465;
$mail->Username = "demousername@example.com";
$mail->Password = "demopassword";
$mail->SetFrom("demousername@example.com", "Any demo alert");
$mail->Subject = $subject;
$mail->Body = $messageBody;
$mail->AddAddress($to);
echo "yes";
if(!$mail->send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
}
else {
echo "Message has been sent successfully";
}
}
}
else{
$response["valid"] = false;
$response["message"] = "Required field(s) missing";
echo json_encode($response);
}
?>
上面的代码对我有用。
评论
阅读手册