web-api/app/Mail/HelloMail.php
珂珂 d8ddb4d489
All checks were successful
Deploy to Production / deploy (push) Successful in 14s
init
2024-11-15 11:44:35 +08:00

38 lines
811 B
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\Queue\SerializesModels;
class HelloMail extends Mailable
{
use Queueable, SerializesModels;
public function __construct(protected $name)
{
//
}
public function envelope(): Envelope
{
return new Envelope(
subject: '邮件功能测试',
);
}
public function content(): Content
{
return new Content(htmlString: "<p>您好,{$this->name}</p><p>这是一封测试邮件,请勿回复。<br><br>祝,工作顺利!</p>");
}
public function attachments(): array
{
return [];
}
}