内容简介:我想使用我的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)》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- SpringBoot实现发送电子邮件
- php – 使用TCPDF发送电子邮件附件
- PHPMailer 6.0.2 发布,PHP 电子邮件发送库
- EmailJS:5步使用JavaScript直接从前端发送电子邮件
- FreeBuf 早报 | WeTransfer发生安全事件,文件通过电子邮件发送给错误的人;恶意软件滥用Android调...
- 绕过电子邮件格式过滤进行SQL注入
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
PHP for the World Wide Web, Second Edition (Visual QuickStart Gu
Larry Ullman / Peachpit Press / 2004-02-02 / USD 29.99
So you know HTML, even JavaScript, but the idea of learning an actual programming language like PHP terrifies you? Well, stop quaking and get going with this easy task-based guide! Aimed at beginning ......一起来看看 《PHP for the World Wide Web, Second Edition (Visual QuickStart Gu》 这本书的介绍吧!