php – 发送电子邮件从localhost与gmail(windows)

栏目: PHP · 发布时间: 7年前

内容简介:我想使用我的localhost的mail()函数.我有WAMP安装和一个Gmail帐户.我知道SMTP的SMTP是smtp.gmail.com,端口是465.我需要在WAMP中配置,所以我可以使用mail()函数?http://stackoverflow.com/questions/4982821/send-email-from-localhost-with-gmailwindows

我想使用我的localhost的mail()函数.我有WAMP安装和一个Gmail帐户.我知道SMTP的SMTP是smtp.gmail.com,端口是465.我需要在WAMP中配置,所以我可以使用mail()函数?

Ayush的答案非常有用,低于简单的方法

1)下载 PHPMailer

2)提取到 php 项目中的文件夹,并将其重命名为phpmailer

3)创建gmail-sample.php并粘贴以下代码:

<?php
    require("phpmailer/class.phpmailer.php");
    $mail = new PHPMailer();

    // ---------- adjust these lines ---------------------------------------
    $mail->Username = "your.username@gmail.com"; // your GMail user name
    $mail->Password = "your-gmail-password"; 
    $mail->AddAddress("friends.email@domain.com"); // recipients email
    $mail->FromName = "your name"; // readable name

    $mail->Subject = "Subject title";
    $mail->Body    = "Here is the message you want to send to your friend."; 
    //-----------------------------------------------------------------------

    $mail->Host = "ssl://smtp.gmail.com"; // GMail
    $mail->Port = 465;
    $mail->IsSMTP(); // use SMTP
    $mail->SMTPAuth = true; // turn on SMTP authentication
    $mail->From = $mail->Username;
    if(!$mail->Send())
        echo "Mailer Error: " . $mail->ErrorInfo;
    else
        echo "Message has been sent";
    ?>

4)从浏览器发送邮件(例如 http://localhost/your-project/gmail-sample.php ).

http://stackoverflow.com/questions/4982821/send-email-from-localhost-with-gmailwindows


以上所述就是小编给大家介绍的《php – 发送电子邮件从localhost与gmail(windows)》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Growth Hacker Marketing

Growth Hacker Marketing

Ryan Holiday / Portfolio / 2013-9-3 / USD 10.31

Dropbox, Facebook, AirBnb, Twitter. A new generation of multibillion dollar brands built without spending a dime on “traditional marketing.” No press releases, no PR firms, and no billboards in Times ......一起来看看 《Growth Hacker Marketing》 这本书的介绍吧!

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具