doukuiqian9911 2015-05-26 10:50
浏览 77
已采纳

发送电子邮件 - MAC中的PHP XAMPP

I am developing a PHP application locally in a mac. I need to develop functionalities where I would need to send emails on certain scenarios. In order to develop and test, I did some research on how to do this in MAC/XAMPP.

For the development purpose I want to use existing resources in MAC/XAMPP rather than third party ones. Hoping in live all in need to do is change the configuration and code works fine using hosting email infrastructure.

Can you suggest how to do this?

(I do hear about postfix but could not figure out how to configure this?)

  • 写回答

4条回答 默认 最新

  • dongre8505 2015-05-26 13:33
    关注

    The thing is that mail() didn't work on Xampp before but since I updated to Xampp 5.6.3 (on mac) it suddenly did. But not all emails would receive it. My mail on gmx.net wouldn't accept the mails but my mail addresses connected to my webhotel did.

    But I use phpmailer https://github.com/PHPMailer/PHPMailer for sending out my mails because when you send out a lot of emails mail() opens and closes the connection on each call but phpmailer can use smtp (for instance you can use gmail, it is slow though) so you can send out many mails in one go. Say, if you are sending out a 1000 mails mail() is not a good choice.

    Edit: Example of using phpmailer. (my webhotel also had a smtp server I could use. I just had to ask them about it and get their settings and port no. On my webhotel there were no login requirement but the emails sent should have an email address connected to the webhotel in the from field and it didn't work locally so gmail was the better option although the authentication makes it slow to send an email this way)

    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!";
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥100 有人会搭建GPT-J-6B框架吗?有偿
  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名