Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

reaching Gmail SMTP daily limit

In one of my Rails applications I'm sending emails through the Gmail SMTP server and everything just works, mails are not going to spam and so on ... But there's one thing that concerns me, the 500messages/day limit the SMTP has, currently I'm over 350/day. I didn't find any official Google page where they talk about the subject, just blog posts that seems to be reliable. Then my question is what do you suggest me in order to be able to send more than 500messages/day? I would love to keep using the Gmail SMTP.

Any help would be appreciated.

like image 896
jpemberthy Avatar asked Feb 03 '23 01:02

jpemberthy


1 Answers

Don't use GMail for what it wasn't built for. It wasn't designed as a mass-email system, although Google definitely has the firepower to do this.

Instead, perhaps use something like SendGrid to send your emails. SendGrid is designed for this and is just as easy (actually, probably easier) to set up with than GMail.

like image 98
Ryan Bigg Avatar answered Feb 05 '23 16:02

Ryan Bigg