aswi2020merlot-gitlab/app/Mail/RegisterMail.php @ 4e70e390
1 |
<?php
|
---|---|
2 |
|
3 |
namespace App\Mail; |
4 |
|
5 |
use Illuminate\Bus\Queueable; |
6 |
use Illuminate\Contracts\Queue\ShouldQueue; |
7 |
use Illuminate\Mail\Mailable; |
8 |
use Illuminate\Queue\SerializesModels; |
9 |
|
10 |
class RegisterMail extends Mailable |
11 |
{
|
12 |
use Queueable, SerializesModels; |
13 |
|
14 |
public $stringHash; |
15 |
|
16 |
/**
|
17 |
* Create a new message instance.
|
18 |
*
|
19 |
* @return void
|
20 |
*/
|
21 |
public function __construct($stringH) |
22 |
{
|
23 |
$this->stringHash = $stringH; |
24 |
}
|
25 |
|
26 |
/**
|
27 |
* Build the message.
|
28 |
*
|
29 |
* @return $this
|
30 |
*/
|
31 |
public function build() |
32 |
{
|
33 |
return $this->markdown('email.register'); |
34 |
}
|
35 |
}
|