> $ meteor add email > This package is automatically configured to send emails (up to 300 per day) through Mailgun I'm not sure I like having 'email' linked to a specific service. But maybe that's the Meteor way?
Create a web app from scratch in under 5 minutes with Meteor and Mailgun
31–40 of 112 posts
Re: Create a web app from scratch in under 5 minutes with Meteor and Mailgun
#32> $ meteor add email > This package is automatically configured to send emails (up to 300 per day) through Mailgun I'm not sure I like having 'email' linked to a specific service. But maybe that's the Meteor way?
You can use other things, but if you want to use one instantly with zero configuration, there's this.
Re: Create a web app from scratch in under 5 minutes with Meteor and Mailgun
#33$ curl https://install.meteor.com | sh I really wish people would stop giving instructions like this. Despite all the focus on web security and sandboxing, we continue to instruct people to run arbitrary code on their user account. People should at least give any shell script they download from the internet a cursory look to see if it's doing what it should be doing instead of blindly executing the response from an H…
Re: Create a web app from scratch in under 5 minutes with Meteor and Mailgun
#34whats the difference between mailgun and sendgrid?
This is tough for me to answer objectively, but I'll do my best.
Both services offer many of the same features and eliminate the pain of managing your own email server. Both services will achieve better deliverability at scale than managing your own server unless you know what you are doing and most people aren't interested in diving that deep into email.
Mailgun is very focused on serving developers and that guides our product roadmap. Therefore, we don't offer features like WYSYWIG newsletter creation tools. We build everything API first and we strive to make them RESTful, intuitive and well documented. Admittedly, our GUI / control panel is not the strongest part of the product. We also focus a lot on incoming email and we are pretty proud of our inbound email parsing through Routes. Mailgun is owned by Rackspace (acquired in Aug 2012).
Sendgrid is definitely the largest transactional email sender in the market. I recently read they do something like 7 billion emails monthly. They have more tools for non-developers like newsletter creators and support language wrappers that some developers prefer. They also offer inbound through their Parse App. Sendgrid is an independent, private company that has raised $27.4mm in funding according to Crunchbase [1].
My recommendation would be to try both - the docs are all online and both offer free plans to test with.
Re: Create a web app from scratch in under 5 minutes with Meteor and Mailgun
#35$ curl https://install.meteor.com | sh I really wish people would stop giving instructions like this. Despite all the focus on web security and sandboxing, we continue to instruct people to run arbitrary code on their user account. People should at least give any shell script they download from the internet a cursory look to see if it's doing what it should be doing instead of blindly executing the response from an H…
`pip install foobar-py` runs a Python setup script, which can do anything bash can. Do you inspect all of those, and comment about their insecurities on HN?
Re: Create a web app from scratch in under 5 minutes with Meteor and Mailgun
#36Why is there such a desire to do X in N minutes? How can something unique and truly useful come from 5 shell commands?
Re: Create a web app from scratch in under 5 minutes with Meteor and Mailgun
#37"Type this code and run it". Hey, I can teach you the theory of relativity in 30 seconds: type this "e=mc2".
Me: But...but..how does this all work? Why?
Harvard University Press: Why? That's us! Dude check us out !! The 600 page book on the top rung with no cool memes and 1980 typeface. That's us.
Re: Create a web app from scratch in under 5 minutes with Meteor and Mailgun
#38Re: Create a web app from scratch in under 5 minutes with Meteor and Mailgun
#39$ curl https://install.meteor.com | sh I really wish people would stop giving instructions like this. Despite all the focus on web security and sandboxing, we continue to instruct people to run arbitrary code on their user account. People should at least give any shell script they download from the internet a cursory look to see if it's doing what it should be doing instead of blindly executing the response from an H…
I don't understand this argument, unless you include things like gem, pip, npm, etc. `pip install foobar-py` runs a Python setup script, which can do anything bash can. Do you inspect all of those, and comment about their insecurities on HN?
Re: Create a web app from scratch in under 5 minutes with Meteor and Mailgun
#40$ curl https://install.meteor.com | sh I really wish people would stop giving instructions like this. Despite all the focus on web security and sandboxing, we continue to instruct people to run arbitrary code on their user account. People should at least give any shell script they download from the internet a cursory look to see if it's doing what it should be doing instead of blindly executing the response from an H…
I don't understand this argument, unless you include things like gem, pip, npm, etc. `pip install foobar-py` runs a Python setup script, which can do anything bash can. Do you inspect all of those, and comment about their insecurities on HN?
Good package management systems use digital signatures to ensure that the original package wasn't tampered with. Not that hacking of the central repositories never happened, but it's a major (and thus infrequent) event.