use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
class TestEmail extends Mailable
use Queueable, SerializesModels;
public function __construct()
// 发送邮件
public function build()
// 发送邮件的人是
[email protected]
// 内容是 test.blade.php中的内容
return $this->from('
[email protected]')->view('mail.test');
第六步:定义视图文件
文件:
resources/mail/test.blade.php
来自<h1>自如初</h1>的邮件
第七步:定义路由
主要是为了方便,我这里直接在路由中进行测试了。
// routes/web.php
Route::get('email', function(){
// 将邮件发送给 [email protected] 这个邮箱
\Illuminate\Support\Facades\Mail::to('[email protected]@qq.com')->send(new \App\Mail\TestEmail());
第四步创建了一个邮件类,现在来看看这个类文件中有哪些方法可用。
from()
from
方法指明发送者的邮件。简单地说,这封邮件是从哪发送出去的。由于在.env
文件中配置了发送者邮箱,因此在build
方法中可以不写这个方法,如下:
// TestEmail.php
public function build()
return $this->view('mail.test');
view()
view
方法为发送邮件内容的模板视图文件。
subject()
subject
方法用于描述该邮件主题。
// TestEmail.php
public function build()
return $this->from('[email protected]')->subject('PHP测试邮件')->view('mail.test');
with
发送数据到邮件模板中。
// 步骤一、修改TestMail.php
public function build()
$data = [
'webTitle' => '自如初',
'webName' => 'PHPer'
return $this->from('[email protected]')
->subject('PHP测试邮件')
->view('mail.test')->with($data);
// 步骤二、修改test.blade.php邮件模板视图
来自<h1>自如初</h1>的邮件
{{ $webTitle }} -- {{ $webName }}
attach('文件路径')
attach
发送一封附件。如excel、图片、pdf等文件。
步骤一:public
目录下新建file
目录并在该目录下创建一个文件。
步骤二:发送邮件
public function build()
$data = [
'webTitle' => '自如初',
'webName' => 'PHPer'
return $this->from('[email protected]')
->subject('发送一个邮件信息')
->view('mail.test')
->with($data)
->attach('file/test.xlsx');
Markdown格式邮件
与发送基本邮件信息是类似的,不同的的邮件内容是用markdown
语法来连接。
第一步:创建邮件类
php artisan make:mail DemoShipped --markdown=mail.demo_shipped
使用--markdown选项会自动生成对应的视图模板文件。
对于简单的演示来说,执行完第一步就已经可以进行对应的演示了,一切都不需要改动。
第二步:修改build方法
文件:app/Mail/DemoShipped.php
public function build()
return $this->from('[email protected]')->markdown('mail.demo_shipped');
对应的视图文件方法使用的是markdown
方法。
第三步:修改视图文件
文件:resources/mail.demo_shipped.blade.php
@component('mail::message')
> hi,我是温新,一名PHPer。
The body of your message.
@component('mail::button', ['url' => 'https://www.ziruchu.com','color'=>'success'])
@endcomponent
Thanks,<br>
{{ config('app.name') }}
@endcomponent
第四步:发送邮件
// routes/web.php
Route::get('email', function(){
$result = \Illuminate\Support\Facades\Mail::to('[email protected]')->send(new \App\Mail\DemoShipped());
dd($result);
Markdown视图模板组件方法
在视图模板文件中看到了默认的方法,现在来看看它们。
按钮组件渲染一个居中的按钮链接。接收2个参数,分别是ulr
和color
,支持的颜色有primary
、success
、error
。
@component('mail::button', ['url' => 'https://www.ziruchu.com','color'=>'success'])
@endcomponent
面板有一个浅色背景区分其它信息,可以把它看到是一个着重信息,相当于markdown语法中 >
所显示出来的文字。
@component('mail::panel')
This is the panel content.
@endcomponent
将markdown语法的表格转成html表格。
@component('mail::table')
| Laravel | Table | Example |
| ------------- |:-------------:| --------:|
| Col 2 is | Centered | $10 |
| Col 3 is | Right-Aligned | $20 |
@endcomponent
每天进步一点点,就一点点