Forum Laravel Track Bounces with Laravel Mailer
Hi,
I use the Laravel mailer to send generic reminders to my users. However, with each execution, I want to know if that email bounced or not. How can I update my code to capture that information?
$message->to($email, $name) ->subject("$subject"); $message->from("[email protected]",'Toy Story'); $message->sender("[email protected]",'Toy Story'); });
Please sign in or create an account to participate in this conversation.
There's no shortage of content at Laracasts. In fact, you could watch nonstop for days upon days, and still not see everything!
Get Started
Track Bounces with Laravel Mailer
Hi,
I use the Laravel mailer to send generic reminders to my users. However, with each execution, I want to know if that email bounced or not. How can I update my code to capture that information?