| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?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;
- use Illuminate\Mail\Mailables\Address;
- class EmailForQueuing extends Mailable implements ShouldQueue
- {
- use Queueable, SerializesModels;
- private string $title;
- private string $content;
- /**
- * Create a new message instance.
- *
- * @return void
- */
- public function __construct(Address $from, Address $to, string $title, string $content)
- {
- $this->from($from->address, $from->name);
- $this->to($to->address, $to->name);
- $this->title = $title;
- $this->content = $content;
- }
- /**
- * Get the message envelope.
- *
- * @return \Illuminate\Mail\Mailables\Envelope
- */
- public function envelope()
- {
- return new Envelope(
- subject: $this->title
- );
- }
- /**
- * Get the message content definition.
- *
- * @return \Illuminate\Mail\Mailables\Content
- */
- public function content()
- {
- return new Content(
- view: 'component.form.email',
- htmlString: $this->content,
- );
- }
- /**
- * Get the attachments for the message.
- *
- * @return array
- */
- public function attachments()
- {
- return [];
- }
- }
|