Ricard
Results
1
issues of
Ricard
use Dacastro4\LaravelGmail\Services\Message\Mail; // Dacastro4\LaravelGmail\Traits\Replyable; try { $email = new Mail(); $email->using($googleToken); $email->priority(rand(1, 5)); $email->from($from, $fromName); $email->to($to, $toName); $email->subject($subject); $email->view($template, ['data' => $data]); $email->send(); } catch (Exception $e) { echo $e->getMessage();...