86 lines
2.1 KiB
PHP
86 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Mail\Mailables\Content;
|
|
use Illuminate\Mail\Mailables\Envelope;
|
|
use Illuminate\Mail\Mailables\Address;
|
|
use Illuminate\Mail\Mailables\Headers;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class WelcomeEmail extends Mailable
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
public string $userName;
|
|
public string $userEmail;
|
|
|
|
/**
|
|
* Create a new message instance.
|
|
*/
|
|
public function __construct(string $userName, string $userEmail)
|
|
{
|
|
$this->userName = $userName;
|
|
$this->userEmail = $userEmail;
|
|
}
|
|
|
|
/**
|
|
* Get the message envelope.
|
|
*/
|
|
public function envelope(): Envelope
|
|
{
|
|
return new Envelope(
|
|
from: new Address('no-reply@cnxifly.com', 'WEBMoney - ConneXiFly'),
|
|
replyTo: [
|
|
new Address('support@cnxifly.com', 'Soporte WEBMoney'),
|
|
],
|
|
subject: '¡Bienvenido a WEBMoney! Tu cuenta ha sido creada',
|
|
tags: ['welcome', 'new-user'],
|
|
metadata: [
|
|
'user_email' => $this->userEmail,
|
|
],
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get the message content definition.
|
|
*/
|
|
public function content(): Content
|
|
{
|
|
return new Content(
|
|
view: 'emails.welcome',
|
|
text: 'emails.welcome-text',
|
|
with: [
|
|
'userName' => $this->userName,
|
|
'userEmail' => $this->userEmail,
|
|
],
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Extra headers to help deliverability.
|
|
*/
|
|
public function headers(): Headers
|
|
{
|
|
return new Headers(
|
|
text: [
|
|
'List-Unsubscribe' => '<mailto:support@cnxifly.com?subject=unsubscribe>',
|
|
'List-Unsubscribe-Post' => 'List-Unsubscribe=One-Click',
|
|
],
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get the attachments for the message.
|
|
*
|
|
* @return array<int, \Illuminate\Mail\Mailables\Attachment>
|
|
*/
|
|
public function attachments(): array
|
|
{
|
|
return [];
|
|
}
|
|
}
|