Live data from Hacker News

Show HN: Maildown – Super Simple Email API

github.com

11–20 of 22 posts

Re: Show HN: Maildown – Super Simple Email API

#11

I'm planning to add support for other email backends. For me, AWS makes the most sense as it's basically free for 99.9% of the population with its 62k free monthly email limit

Do you know whether the "62k free monthly emails limit" of the free-tier is available to existing AWS accounts, or a new AWS account must be created to enjoy free-tier billing?

Thanks!

EDIT: BTW, nice project!

Re: Show HN: Maildown – Super Simple Email API

#13
post #6

I feel this unnecessarily complicates things. If you want to send emails via SES, why not just use something like https://www.sendwithses.com or https://moonmail.io/

Seems the tool mentioned in this post is more for transactional email. But I wanted to comment on moonmail. Looks like that is for newsletters. I think https://sendy.co is sort of the same offering but much cheaper (you do have to host it yourself).

Re: Show HN: Maildown – Super Simple Email API

#14
post #11

I'm planning to add support for other email backends. For me, AWS makes the most sense as it's basically free for 99.9% of the population with its 62k free monthly email limit

Do you know whether the "62k free monthly emails limit" of the free-tier is available to existing AWS accounts, or a new AWS account must be created to enjoy free-tier billing? Thanks! EDIT: BTW, nice project!

I believe its 62k free monthly emails for anyone, regardless of how long you've had your AWS account

Source: https://aws.amazon.com/ses/pricing/

Re: Show HN: Maildown – Super Simple Email API

#15
post #11

I'm planning to add support for other email backends. For me, AWS makes the most sense as it's basically free for 99.9% of the population with its 62k free monthly email limit

Do you know whether the "62k free monthly emails limit" of the free-tier is available to existing AWS accounts, or a new AWS account must be created to enjoy free-tier billing? Thanks! EDIT: BTW, nice project!

Sounds like new and existing accounts, but only if the email originates within AWS EC2:

> When you call Amazon SES from an application hosted in Amazon EC2, you can send 62,000 messages per month at no charge. This Free Usage Tier benefit does not expire.

https://aws.amazon.com/ses/pricing/

Re: Show HN: Maildown – Super Simple Email API

#16

I'm planning to add support for other email backends. For me, AWS makes the most sense as it's basically free for 99.9% of the population with its 62k free monthly email limit

Nice project! Can I offer a suggestion? Add support for goold old sendmail. Every email provider (Mailgun, Sendgrid, SES and others) have SMTP support and sendmail instructions. All of my home servers are already configured with it, so adding markdown to this setup would be sick.

Re: Show HN: Maildown – Super Simple Email API

#17

I'm planning to add support for other email backends. For me, AWS makes the most sense as it's basically free for 99.9% of the population with its 62k free monthly email limit

Nice project! Can I offer a suggestion? Add support for goold old sendmail. Every email provider (Mailgun, Sendgrid, SES and others) have SMTP support and sendmail instructions. All of my home servers are already configured with it, so adding markdown to this setup would be sick.

Sure, I'm already planning to add other backends as an alternative to AWS. Feel free to add a note to issue #7 and I'll get on the case

Re: Show HN: Maildown – Super Simple Email API

#18
post #11

Earlier quoted context omitted.

Do you know whether the "62k free monthly emails limit" of the free-tier is available to existing AWS accounts, or a new AWS account must be created to enjoy free-tier billing? Thanks! EDIT: BTW, nice project!

I believe its 62k free monthly emails for anyone, regardless of how long you've had your AWS account Source: https://aws.amazon.com/ses/pricing/

Do you have to do your own queueing to make sure you're not sending too many emails all at once and they get marked as spam? Or does SES handle that for you? And if it doesn't, is there any service that will do this?

Re: Show HN: Maildown – Super Simple Email API

#19

Earlier quoted context omitted.

I believe its 62k free monthly emails for anyone, regardless of how long you've had your AWS account Source: https://aws.amazon.com/ses/pricing/

Do you have to do your own queueing to make sure you're not sending too many emails all at once and they get marked as spam? Or does SES handle that for you? And if it doesn't, is there any service that will do this?

AWS handles that stuff for you. You can use SNS to monitor stuff like deliverability

Re: Show HN: Maildown – Super Simple Email API

#20

Earlier quoted context omitted.

Do you have to do your own queueing to make sure you're not sending too many emails all at once and they get marked as spam? Or does SES handle that for you? And if it doesn't, is there any service that will do this?

AWS handles that stuff for you. You can use SNS to monitor stuff like deliverability

Wow! That's amazing! What's the purpose of having your own dedicated IP then?
Post reply on HN