Skip to content

Instantly share code, notes, and snippets.

@richardDobron
Created July 11, 2022 17:59
Show Gist options
  • Save richardDobron/ca34ba8775abee088788716751c3040c to your computer and use it in GitHub Desktop.
Save richardDobron/ca34ba8775abee088788716751c3040c to your computer and use it in GitHub Desktop.
<?php
namespace App\Mail;
use App\Mail\Traits\TextMailBuilder;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
class OrderReceived extends Mailable
{
use Queueable;
use SerializesModels;
use TextMailBuilder;
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment