Sending mails using Resend in Laravel

1 · Amit Merchant · May 29, 2024, 8:37 a.m.
When it comes to sending emails, Laravel makes it a breeze of a task. Be it SMTP, Sendmail, Mailgun, or any other service, Laravel has got it all. You set the default mailer, the required API key/token in the .env file, and you are good to go. The recent addition to this list is the email provider called Resend. Essentially, Resend is now a part of Laravel core so all you need is to install the Resend SDK, set the Resend API key in the .env file and you’ll able to send emails in no time. To get ...