Created
July 11, 2022 17:59
-
-
Save richardDobron/ca34ba8775abee088788716751c3040c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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