EDIT: Solved! I'm just overthinking it, at first I thought I need to send daily email, but after doing some calculations, it would be more profitable if I only send paid jobs offers, so i'll just stick with SendGrid.
I'm currently building a JS remote jobs board site, and I want to send a daily dynamic custom HTML email contents to list of contacts.
I've looked at SendGrid's API but it seems they just support up to 1000 emails per request, and I have to manually specify those, which I think is not the best practice.
So anyone knows how to do it better? Or I should use another SaaS?
Thanks in advance.
SES does the job but if you care about deliverability information and some analytics i'm a big fan of SendGrid
Ah.. You're right! Yes I'm care about deliverability so I'll explore SendGrid more, thanks.
Use your own Queue to manage your emails on top of sendgrid. Batch up requests. :)
Yeah, I'm thinking exactly the same as you, thanks :)