发送电子邮件 - MAC 中的 PHP XAMPP
Posted
技术标签:
【中文标题】发送电子邮件 - MAC 中的 PHP XAMPP【英文标题】:Sending email - PHP XAMPP in MAC 【发布时间】:2015-08-08 00:02:30 【问题描述】:我正在 Mac 中本地开发 php 应用程序。我需要开发在某些情况下需要发送电子邮件的功能。为了开发和测试,我研究了如何在 MAC/XAMPP 中做到这一点。
出于开发目的,我想使用 MAC/XAMPP 中的现有资源而不是第三方资源。希望现场直播中所有需要做的就是更改配置,并且代码可以使用托管电子邮件基础设施正常工作。
你能建议怎么做吗?
(我确实听说过 postfix,但不知道如何配置它?)
【问题讨论】:
如果对你有帮助,记得设置正确答案;)因为 *** 也是一个有积分和徽章的游戏 如何设置正确答案 - 我是这个网站的新手! 【参考方案1】:我认为此答案将帮助您在 XAMPP 上配置您的电子邮件设置。
How to configure XAMPP to send mail from localhost?
【讨论】:
Windows - 那是什么? (开玩笑!) 我在MAC环境,所以帖子没有帮助!【参考方案2】:当您运行 mail(...);
时,您可以使用此 PHP 脚本发送电子邮件。
<?php
$receiver = 'receiver_email@example.com';
$subject = 'Did you know...';
$message = "
<html>
<body>
You can use <b>HTML</b> here for formatting the content.<br>Therefore the header has to be set as text/html
</body>
</html>
";
$header = 'MIME-Version: 1.0' . "\r\n";
$header .= 'Content-type: text/html; charset=utf-8' . "\r\n";
$header .= 'From: Example <noreply@example.com>' . "\r\n";
mail($receiver, $subject, $message, $header);
?>
请参阅Documentation。
【讨论】:
【参考方案3】:我曾经在我的开发机器上遇到过这个问题。我没有尝试正确配置 SMTP,而是要求另一台服务器为我完成这项工作。您可以使用 cURL 库发布所需的字段($from、$to、$body 等),远程机器上的相应脚本会为您发送电子邮件。
本地机器码:
<?php
function curl_post($url, array $post = array(), array $options = array())
$defaults = array(
CURLOPT_POST => 1,
CURLOPT_HEADER => 0,
CURLOPT_URL => $url,
CURLOPT_FRESH_CONNECT => 1,
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_FORBID_REUSE => 1,
CURLOPT_TIMEOUT => 20,
CURLOPT_POSTFIELDS => $post
);
$ch = curl_init();
curl_setopt_array($ch, ($options + $defaults));
if( ! $result = curl_exec($ch))
throw new ErrorException ("curl_post error: " . stripslashes(curl_error($ch)));
curl_close($ch);
return $result;
function email($from, $to, $subject, $body)
$result = curl_post ("http://server-with-email/my-email-controller.php", array ("to"=>$to, "from"=>$from, "subject"=>$subject, "body"=>$body));
// usage:
$result = email ("from@email.com", "to@email.com", "an email for you", "content of mail");
远程机器码: (my-email-controller.php)
<?php
$to = $_POST["to"];
$from = $_POST["from"];
$subject = $_POST["subject"];
$body = $_POST["body"];
$headers =
"Content-Type: text/plain; charset=UTF-8" . "\r\n" .
"MIME-Version: 1.0" . "\r\n" .
"From: $from" . "\r\n" .
"X-Mailer: PHP/" . phpversion();
if (mail ($to, $subject, $body , $headers)===TRUE)
echo "mail was sent ok";
else
echo "mail failed"
【讨论】:
【参考方案4】:问题是 mail() 以前在 Xampp 上不起作用,但自从我更新到 Xampp 5.6.3(在 Mac 上)后它突然就起作用了。 但并非所有电子邮件都会收到它。我在 gmx.net 上的邮件不接受这些邮件,但我连接到我的 webhotel 的邮件地址可以。
但我使用 phpmailer https://github.com/PHPMailer/PHPMailer 发送我的邮件,因为当您发送大量电子邮件时,mail() 会在每次通话时打开和关闭连接,但 phpmailer 可以使用 smtp(例如,您可以使用 gmail,它是不过速度很慢),因此您可以一次发送许多邮件。 比如说,如果您要发送 1000 封邮件,mail() 不是一个好的选择。
编辑:使用 phpmailer 的示例。 (我的 webhotel 也有一个我可以使用的 smtp 服务器。我只需要询问他们并获取他们的设置和端口号。在我的 webhotel 上没有登录要求,但发送的电子邮件应该有一个连接到 webhotel 的电子邮件地址from 字段,它在本地不起作用,所以 gmail 是更好的选择,尽管身份验证使得以这种方式发送电子邮件很慢)
require_once('../class.phpmailer.php');
//include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded
$mail = new PHPMailer();
$body = file_get_contents('contents.html');
$body = eregi_replace("[\]",'',$body);
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = "mail.yourdomain.com"; // SMTP server
$mail->SMTPDebug = 2; // enables SMTP debug information (for testing)
// 1 = errors and messages
// 2 = messages only
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "tls"; // sets the prefix to the servier
$mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server
$mail->Port = 587; // set the SMTP port for the GMAIL server
$mail->Username = "yourusername@gmail.com"; // GMAIL username
$mail->Password = "yourpassword"; // GMAIL password
$mail->SetFrom('name@yourdomain.com', 'First Last');
$mail->AddReplyTo("name@yourdomain.com","First Last");
$mail->Subject = "PHPMailer Test Subject via smtp (Gmail), basic";
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->MsgHTML($body);
$address = "whoto@otherdomain.com";
$mail->AddAddress($address, "John Doe");
$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!";
【讨论】:
PHPMailer 听起来不错。我需要做什么配置才能使 PHPMailer 工作?你有示例代码/配置吗? 我从这个页面添加了一个例子:phpmailer.worxware.com/?pg=examplebgmail以上是关于发送电子邮件 - MAC 中的 PHP XAMPP的主要内容,如果未能解决你的问题,请参考以下文章