IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发测试 -> Lumen 邮箱推送 -> 正文阅读

[开发测试]Lumen 邮箱推送

获取邮箱授权码

找到qq邮箱中的设置 -> 账户 -> POP3/IMAP/SMTP/Exchange/CardDAV/CalDAV服务,

如果是已开启状态,关闭重新打开就好了,拿到授权码

安装依赖包

如果框架已经下好依赖查看composer.json(框架所用到的依赖)文件是否有

?如果没有? 就在这里添加上

!!!!? 注意上边的是框架版本号下载的mail版本不要大于框架版本号(坑一)


        "illuminate/mail": "~5.6",

?添加上之后,执行命令 composer up ,? 等待mail安装

框架没有composer.json? ?直接 composer require illuminate/mail? 进行安装

配置文件

lumen框架安装好mail之后,目录中并不会有mail.php文件。这里需要我们手动做一个

放在config目录下

?这是mail文件内容,直接无脑粘贴

<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Mail Driver
    |--------------------------------------------------------------------------
    |
    | Laravel supports both SMTP and PHP's "mail" function as drivers for the
    | sending of e-mail. You may specify which one you're using throughout
    | your application here. By default, Laravel is setup for SMTP mail.
    |
    | Supported: "smtp", "sendmail", "mailgun", "mandrill", "ses",
    |            "sparkpost", "log", "array"
    |
    */

    'driver' => env('MAIL_DRIVER', 'smtp'),

    /*
    |--------------------------------------------------------------------------
    | SMTP Host Address
    |--------------------------------------------------------------------------
    |
    | Here you may provide the host address of the SMTP server used by your
    | applications. A default option is provided that is compatible with
    | the Mailgun mail service which will provide reliable deliveries.
    |
    */

    'host' => env('MAIL_HOST'),

    /*
    |--------------------------------------------------------------------------
    | SMTP Host Port
    |--------------------------------------------------------------------------
    |
    | This is the SMTP port used by your application to deliver e-mails to
    | users of the application. Like the host we have set this value to
    | stay compatible with the Mailgun e-mail application by default.
    |
    */

    'port' => env('MAIL_PORT'),

    /*
    |--------------------------------------------------------------------------
    | Global "From" Address
    |--------------------------------------------------------------------------
    |
    | You may wish for all e-mails sent by your application to be sent from
    | the same address. Here, you may specify a name and address that is
    | used globally for all e-mails that are sent by your application.
    |
    */

    'from' => [
        'address' => env('MAIL_FROM_ADDRESS'),
        'name' => env('MAIL_FROM_NAME', 'Example'),
    ],

    /*
    |--------------------------------------------------------------------------
    | E-Mail Encryption Protocol
    |--------------------------------------------------------------------------
    |
    | Here you may specify the encryption protocol that should be used when
    | the application send e-mail messages. A sensible default using the
    | transport layer security protocol should provide great security.
    |
    */

    'encryption' => env('MAIL_ENCRYPTION', 'null'),

    /*
    |--------------------------------------------------------------------------
    | SMTP Server Username
    |--------------------------------------------------------------------------
    |
    | If your SMTP server requires a username for authentication, you should
    | set it here. This will get used to authenticate with your server on
    | connection. You may also set the "password" value below this one.
    |
    */

    'username' => env('MAIL_USERNAME'),

    'password' => env('MAIL_PASSWORD'),

    /*
    |--------------------------------------------------------------------------
    | Sendmail System Path
    |--------------------------------------------------------------------------
    |
    | When using the "sendmail" driver to send e-mails, we will need to know
    | the path to where Sendmail lives on this server. A default path has
    | been provided here, which will work well on most of your systems.
    |
    */

    'sendmail' => '/usr/sbin/sendmail -bs',

    /*
    |--------------------------------------------------------------------------
    | Markdown Mail Settings
    |--------------------------------------------------------------------------
    |
    | If you are using Markdown based email rendering, you may configure your
    | theme and component paths here, allowing you to customize the design
    | of the emails. Or, you may simply stick with the Laravel defaults!
    |
    */

    'markdown' => [
        'theme' => 'default',

        'paths' => [
            resource_path('views/vendor/mail'),
        ],
    ],

];

然后再env文件中配置一下

MAIL_DRIVER=smtp

MAIL_HOST=smtp.qq.com

MAIL_PORT=25? // 这里是你得端口号 建议刚开始写25,普通方式,425需要MAIL_ENCRYPTION进行加密

MAIL_USERNAME=********@qq.com? ?//? 刚刚登录的邮箱

MAIL_PASSWORD=**********? ?//? 把第一步获取到授权码放这里

MAIL_ENCRYPTION=null? // 加密方式? 刚接触建议使用null? 熟悉流程

MAIL_FROM_ADDRESS=*******@qq.com? // 发件人的邮箱

MAIL_FROM_NAME=发件人的名称

调用mail

在 bootstrap\app.php 中添加

$app->configure('mail');  // 调用到mail依赖
$app->singleton('mailer', function () use ($app) {  // 注册中间商,不写这会有问题
    return $app->loadComponent('mail', Illuminate\Mail\MailServiceProvider::class, 'mailer');
});

在控制器中写方法开始测试

注意:!!!!

不要用php artisan make:command 去生成控制器? Lumen对这个不友好需要配置很多东西

自己copy我给的代码就好

在路由文件中加上路由

// 邮箱测试
$router->get('mail/send','Api\MailController@send');

注意这里我是写在Controllers下的Api目录下的,这里根据自己的项目结构来

创建MailController.php 文件。写控制器

<?php
namespace App\Http\Controllers\Api;
use Laravel\Lumen\Routing\Controller;
use Illuminate\Http\Request;
use \App\Http\Services\Api\FaceService;
use Illuminate\Support\Facades\Mail;
class MailController extends Controller
{
    public function send() {
        $name = '我发的第一份邮件'; 
        // Mail::send()的返回值为空,所以可以其他方法进行判断 
        Mail::send('emails.test',['name'=>$name],function($message){ 
        $to = '******@qq.com'; $message ->to($to)->subject('邮件测试'); 
        }); 
        //  $to 是你要发送的邮箱地址
        // 返回的一个错误数组,利用此可以判断是否发送成功
         dd(Mail::failures());
       } 
}

写完控制请后需要一份邮箱内容模板

在resources\views\创建emails目录,创建test.php

内容随便写一下

访问路由测试,能成功发送邮件自己多看看这些配置都代表什么意思

如果不能成功参考一下

laravel 邮箱教程以及可能出现的问题

  开发测试 最新文章
pytest系列——allure之生成测试报告(Wind
某大厂软件测试岗一面笔试题+二面问答题面试
iperf 学习笔记
关于Python中使用selenium八大定位方法
【软件测试】为什么提升不了?8年测试总结再
软件测试复习
PHP笔记-Smarty模板引擎的使用
C++Test使用入门
【Java】单元测试
Net core 3.x 获取客户端地址
上一篇文章      下一篇文章      查看所有文章
加:2022-02-24 15:36:05  更:2022-02-24 15:37:00 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/18 2:49:26-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码