Laravel 发送电子邮件

laravel 发送电子邮件

laravel使用免费功能丰富的库 swiftmailer 发送电子邮件。使用库函数,我们可以轻松地发送电子邮件,没有太多的麻烦。电子邮件模板的加载方式与视图相同,这意味着您可以使用blade语法并将数据注入到模板中。

下表显示了发送功能的语法和属性 -

句法 void send(string | array $ view,array $ data,closure | string $ callback)
参数 * $ view(string | array) - 包含电子邮件消息的视图的名称 * $ data(array) - 要传递的数据数组 * $ callback - 一个闭包回调,它接收一个消息实例,允许您自定义邮件消息的收件人,主题和其他方面
返回 没有
描述 发送电子邮件。

在第三个参数中,$ callback closure收到的消息实例和那个实例,我们也可以调用以下函数并修改消息,如下所示。

  • $ message→subject('welcome to the tutorials point');
  • $ message→from('email@example.com','mr. example');
  • $ message→to('email@example.com','mr. example');

一些不常用的方法包括 -

  • $ message→sender('email@example.com','mr. example');
  • $ message→returnpath('email@example.com');
  • $ message→cc('email@example.com','mr. example');
  • $ message→bcc('email@example.com','mr. example');
  • $ message→replyto('email@example.com','mr. example');
  • $ message→priority(2);

要附加或嵌入文件,您可以使用以下方法 -

  • $ message→attach('path / to / attachment.txt');
  • $ message→embed('path / to / attachment.jpg');

邮件可以作为html或文本发送。您可以通过传递数组来指示您想要在第一个参数中发送的邮件类型,如下所示。默认类型是html。如果您想发送纯文本邮件,请使用以下语法。

句法

mail::send([‘text’=>’text.view’], $data, $callback);

在这种语法中,第一个参数需要一个数组。使用 文本 作为视图的键名作为键的值。

第1步 - 我们现在将从gmail帐户发送一封电子邮件,并且您需要在laravel环境文件 - .env 文件中配置您的gmail帐户。在您的gmail帐户中启用两步验证,然后创建应用专用密码,然后更改.env参数,如下所示。

.env

mail_driver = smtp
mail_host = smtp.gmail.com
mail_port = 587
mail_username = your-gmail-username
mail_password = your-application-specific-password
mail_encryption = tls

步骤2 - 更改 .env 文件后,执行以下两条命令清除缓存并重新启动laravel服务器。

php artisan config:cache

第3步 - 通过执行以下命令创建一个名为 mailcontroller 的控制器。

php artisan make:controller mailcontroller --plain

第4步 - 成功执行后,您将收到以下输出 -

mailcontroller

第5步 - 复制下面的代码

app / http / controllers / mailcontroller.php 文件。

应用程序/ http /控制器/ mailcontroller.php


namespace app\http\controllers;
use illuminate\http\request;
use mail;

use app\http\requests;
use app\http\controllers\controller;

class mailcontroller extends controller {
   public function basic_email(){
      $data = array('name'=-->"virat gandhi");

      mail::send(['text'=>'mail'], $data, function($message) {
         $message->to('abc@gmail.com', 'tutorials point')->subject
            ('laravel basic testing mail');
         $message->from('xyz@gmail.com','virat gandhi');
      });
      echo "basic email sent. check your inbox.";
   }
   public function html_email(){
      $data = array('name'=>"virat gandhi");
      mail::send('mail', $data, function($message) {
         $message->to('abc@gmail.com', 'tutorials point')->subject
            ('laravel html testing mail');
         $message->from('xyz@gmail.com','virat gandhi');
      });
      echo "html email sent. check your inbox.";
   }
   public function attachment_email(){
      $data = array('name'=>"virat gandhi");
      mail::send('mail', $data, function($message) {
         $message->to('abc@gmail.com', 'tutorials point')->subject
            ('laravel testing mail with attachment');
         $message->attach('c:\laravel-master\laravel\public\uploads\image.png');
         $message->attach('c:\laravel-master\laravel\public\uploads\test.txt');
         $message->from('xyz@gmail.com','virat gandhi');
      });
      echo "email sent with attachment. check your inbox.";
   }
}

第6步 - 在 resources / views / mail.blade.php 文件中复制以下代码。

资源/视图/ mail.blade.php

<h1>hi, {{ $name }}</h1>
l

sending mail from laravel.

第7步 - 在 app / http / routes.php中 添加以下行 。

应用程序/ http / routes.php文件

route::get('sendbasicemail','mailcontroller@basic_email');
route::get('sendhtmlemail','mailcontroller@html_email');
route::get('sendattachmentemail','mailcontroller@attachment_email');

第8步 - 访问以下url以测试基本电子邮件。

http://localhost:8000/sendbasicemail

第9步 - 输出屏幕看起来像这样。 检查您的收件箱以查看基本电子邮件输出。

第10步 - 访问以下url以测试html电子邮件。

http://localhost:8000/sendhtmlemail

第11步 - 输出屏幕看起来像这样。 检查您的收件箱以查看html电子邮件输出。

第12步 - 访问以下url以测试带附件的html电子邮件。

http://localhost:8000/sendattachmentemail

第13步 - 您可以看到以下输出

注 - 在 mailcontroller.php 文件中,from方法中的电子邮件地址应该是您可以从中发送电子邮件地址的电子邮件地址。通常,它应该是您的服务器上配置的电子邮件地址。

下一节:laravel ajax

laravel 教程

相关文章