phpmailer实现发送邮件功能

发送邮件功能很多地方是需要用的,比如注册成功为用户发送邮件。这里只是简单的为大家介绍一下phpmailer的使用方法,php一般用这个插件进行邮件发送,掌握好后可以运用到实践项目中,当然一般发送邮件需要使用到消息队列,这里先不讲。

1.搭建简单的项目

在服务器上创建一个项目目录sendemail,里面写两个文件,一个是index.html,另一个是index.php.

图片.png

2.下载phpmailer

php离不开composer,我们用composer下载phpmailer。首先在浏览器上输入网址 https://packagist.org/ ,然后搜索phpmailer.如下图,第二个就是了。

图片.png

点进去,在命令行先进入到项目目录,执行这条语句。就可以下载phpmailer.
图片.png

执行命令如下所示。

~ % cd /usr/local/var/www/sendemail
sendemail % composer require phpmailer/phpmailer
Using version ^6.1 for phpmailer/phpmailer
./composer.json has been created
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 1 install, 0 updates, 0 removals
  - Installing phpmailer/phpmailer (v6.1.7): Loading from cache
phpmailer/phpmailer suggests installing psr/log (For optional PSR-3 debug logging)
phpmailer/phpmailer suggests installing league/oauth2-google (Needed for Google XOAUTH2 authentication)
phpmailer/phpmailer suggests installing hayageek/oauth2-yahoo (Needed for Yahoo XOAUTH2 authentication)
phpmailer/phpmailer suggests installing stevenmaguire/oauth2-microsoft (Needed for Microsoft XOAUTH2 authentication)
phpmailer/phpmailer suggests installing symfony/polyfill-mbstring (To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2))
Writing lock file
Generating autoload files
1 package you are using is looking for funding.
Use the `composer fund` command to find out more!
sendemail % ls -l
total 32
-rw-r--r--  1 lijiwei  staff    65 Sep 16 11:36 composer.json
-rw-r--r--  1 lijiwei  staff  3257 Sep 16 11:37 composer.lock
-rw-r--r--  1 lijiwei  staff   480 Sep 16 11:15 index.html
-rw-r--r--  1 lijiwei  staff    33 Sep 16 11:16 index.php
drwxr-xr-x  5 lijiwei  staff   160 Sep 16 11:37 vendor

3.开启邮箱的IMAP/SMTP服务

图片.png

点击开启,需要用手机号发送短信到指定号码。


图片.png

发送之后点击我以发送,就会看到授权吗,授权码要记得。


图片.png

4.上代码

首先packagist有模版案例,可以直接copy过来,然后进行参数修改。


图片.png

首先写个简单的前台页面,index.html

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <form action='index.php' method="post">
        <label>标题:</label><input type="text" name="title" ><br/>
        <label>内容:</label><input type="text" name="content" ><br/>
        <label>邮箱地址:</label><input type="email" name="email"><br/>
        <input type="submit" value="发送">
    </form>
</body>
</html>

然后写实现代码index.php

<?php

use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\SMTP;
use PHPMailer\PHPMailer\Exception;

require 'vendor/autoload.php';

maileto($_POST['email'],$_POST['title'],$_POST['content']);
/**
 * 邮件发送函数
 * @param  [type] $to      [发送给谁(邮箱)]
 * @param  [type] $title   [邮箱标题]
 * @param  [type] $content [邮箱内容]
 * @return [type]          [description]
 */
function maileto($to,$title,$content)
{
    $mail = new PHPMailer(true);
    try {
        //Server settings
        $mail->SMTPDebug = 0; // 是否开启smtp的debug进行调试 ,0关闭,1开启
        $mail->isSMTP(); // 启用SMTP
        $mail->CharSet='utf-8'; //设置字符编码
        $mail->Host       = 'smtp.qq.com';// SMTP服务器,这里是qq邮箱
        $mail->SMTPAuth   = true;// 启用SMTP认证
        $mail->Username   = '2974798592@qq.com';// 发送邮件的邮箱,即自己的邮箱
        $mail->Password   = 'fqamafmrsdiodcea';// 授权码
        $mail->SMTPSecure = 'ssl';// 加密方式为tls或者ssl,根据需求自己改
        $mail->Port       = 465;// 端口号
        //Recipients
        $mail->setFrom('2974798592@qq.com', '白大侠'); //从哪发送的邮件,和上面的$mail->Username一样,后面是发送者的昵称,可以改
        $mail->addAddress($to);// 增加一个接受者的邮箱,这里用变量
        //$mail->addAddress('ellen@example.com');// 可以增加多个
        // $mail->addReplyTo('info@example.com', 'Information');
        // $mail->addCC('cc@example.com');   //抄送
        // $mail->addBCC('bcc@example.com'); //密送
        // 附件
        // $mail->addAttachment('/var/tmp/file.tar.gz');         // Add attachments
        // $mail->addAttachment('/tmp/image.jpg', 'new.jpg');    // Optional name
        // Content
        $mail->isHTML(true);                                  // Set email format to HTML
        $mail->Subject = $title;//标题
        $mail->Body    = $content;//正文
        //$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';////当邮件不支持html时备用显示,可省略 
        $mail->send();//发送邮件
        echo 'Message has been sent';
    } catch (Exception $e) {
        echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
    }
}

5.效果

图片.png

图片.png

还挺有趣的呢,感兴趣的可以了解了解。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,905评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,140评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,791评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,483评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,476评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,516评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,905评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,560评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,778评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,557评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,635评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,338评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,925评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,898评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,142评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,818评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,347评论 2 342