Send With Confidence
Partner with the email service trusted by developers and marketers for time-savings, scalability, and delivery expertise.
Time to read: 1 minute
meteor add email
touch server/smtp.js
Meteor.startup(function () {
process.env.MAIL_URL = 'smtp://your_username:your_password@smtp.sendgrid.net:587';
});
if (Meteor.isServer) {
Email.send({
from: "from@mailinator.com",
to: "alpha@mailinator.com",
subject: "Subject",
text: "Here is some text"
});
}
Partner with the email service trusted by developers and marketers for time-savings, scalability, and delivery expertise.