Difference between revisions of "mail"
From WebHostingNeeds.com
m (→MAIL API) |
m (→MAIL API) |
||
Line 19: | Line 19: | ||
* https://sendgrid.com (used by hostonnet.com) | * https://sendgrid.com (used by hostonnet.com) | ||
* http://dyn.com/email/ (used by newrelic.com on 09-May-2014) | * http://dyn.com/email/ (used by newrelic.com on 09-May-2014) | ||
+ | * https://www.sparkpost.com (100K email per month free) | ||
* https://elasticemail.com/pricing/ (150k email per month free) | * https://elasticemail.com/pricing/ (150k email per month free) | ||
* http://www.mailgun.com 10K mails/month free. $1 per 2k mails. ([https://blog.hostonnet.com/mailgun-com-experiance-account-suspended-for-5-bounce-mail mailgun experiance]) | * http://www.mailgun.com 10K mails/month free. $1 per 2k mails. ([https://blog.hostonnet.com/mailgun-com-experiance-account-suspended-for-5-bounce-mail mailgun experiance]) |
Latest revision as of 09:11, 10 May 2017
Contents
Mail Server Solutions
Work Mail Solutions
MAIL API
- https://sendgrid.com (used by hostonnet.com)
- http://dyn.com/email/ (used by newrelic.com on 09-May-2014)
- https://www.sparkpost.com (100K email per month free)
- https://elasticemail.com/pricing/ (150k email per month free)
- http://www.mailgun.com 10K mails/month free. $1 per 2k mails. (mailgun experiance)
- http://www.mailjet.com (used by cdkeys.com) 200 mails per day - free. $1 for 3k mails.
- http://aws.amazon.com/ses/ 2k mails per day if sending from EC2. Data charge extra.
Sending Mail From Linux Command Line
mail command is used to send/read mail in command line.
Testing mail from server
echo "testing" | mail -s "test" [email protected]
Check mail log
tail -f /path/to/maillog.log
On cpanel server
echo > /var/log/exim_mainlog echo "Testing " | mail -s "Test Email" [email protected] tail -f /var/log/exim_mainlog