| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?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 Websitemail extends Mailable
- {
- use Queueable, SerializesModels;
- /**
- * Create a new message instance.
- */
- public $subject, $body;
- public function __construct($subject,$body)
- {
- $this->subject = $subject;
- $this->body = $body;
- }
- /**
- * Get the message envelope.
- */
- public function envelope(): Envelope
- {
- return new Envelope(
- subject: $this->subject,
- );
- }
- /**
- * Get the message content definition.
- */
- public function content(): Content
- {
- return new Content(
- view: 'email'
- );
- }
- /**
- * Get the attachments for the message.
- *
- * @return array<int, \Illuminate\Mail\Mailables\Attachment>
- */
- public function attachments(): array
- {
- return [];
- }
- }
|