欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Laravel框架实现的使用smtp发送邮件功能示例

程序员文章站 2023-11-10 13:47:22
本文实例讲述了laravel框架实现的使用smtp发送邮件功能。分享给大家供大家参考,具体如下: 1、.env文件中配置 mail_driver=smtp mai...

本文实例讲述了laravel框架实现的使用smtp发送邮件功能。分享给大家供大家参考,具体如下:

1、.env文件中配置

mail_driver=smtp
mail_host=smtp.邮箱后缀
mail_port=邮件服务器发送端口
mail_username=发送方邮件地址
mail_password=发送方邮箱生成的第三方登陆码
mail_from_address=发送邮箱地址
mail_from_name=发送方名称

2、config目录下mail.php文件配置

可以不配置,因为会被.env文件覆盖掉。(只有在.env中没有的时候才会去该文件中取值)

3、app/console/commonds/sendmail.php

namespace app\console\commands;
use illuminate\console\command;
use illuminate\support\facades\mail;
class sendmailcommand extends command
{
  /**
   * the name and signature of the console command.
   *
   * @var string
   */
  protected $signature = 'demo:sendmail';
  /**
   * the console command description.
   *
   * @var string
   */
  protected $description = '测试脚本sendmail';
  /**
   * constructor
   */
  public function __construct()
  {
    parent::__construct();
  }
  /**
   * execute the console command.
   *
   * @return mixed
   */
  public function handle()
  {
    $content = '这是一封的测试邮件.';
    $tomail = '目标邮箱';
    mail::raw($content, function ($message) use ($tomail) {
      $message->subject('[ 测试 ] 测试邮件sendmail - ' .date('y-m-d h:i:s'));
      $message->to($tomail);
    });
  }
}

4、测试

cmd切换到项目根目录下,执行

php artisan demo:sendmail

更多关于laravel相关内容感兴趣的读者可查看本站专题:《laravel框架入门与进阶教程》、《php优秀开发框架总结》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总

希望本文所述对大家基于laravel框架的php程序设计有所帮助。