A mailing daemon for Meteor
Mailer is a Meteor package that provides a simple way to send emails using a prioritized queue system.
It was built to never miss an email sending even if the server is restarted.
To install the package, execute this command in the root of your project :
meteor add jalik:mailer
If later you want to remove the package :
meteor remove jalik:mailer
All settings are accessible from the Mailer.config
object which is an instance of MailerConfig
with default settings.
import {Mailer} from 'meteor/jalik:mailer';
// default from address to use
Mailer.config.from = 'me@mail.com';
// send emails asynchronously
Mailer.config.async = true;
// send emails every 60 seconds
Mailer.config.interval = 1000 * 60;
// send max 5 emails per task (in this example a task is run every 60 seconds) / (0 to disable)
Mailer.config.maxEmailsPerTask = 5;
// max time before considering that a sending email has failed
Mailer.config.maxSendingTime = 1000 * 30;
// default priority (ex= 1 is more important than 5)
Mailer.config.priority = 2;
// Send email when service starts
Mailer.config.processOnStart = true;
// number of time to retry when email sending failed (0 to disable)
Mailer.config.retry = 1;
// web hook path used to mark emails as read
Mailer.config.webHook = 'mailer';
To start the mail service, use Mailer.start()
.
import {Mailer} from 'meteor/jalik:mailer';
import {Meteor} from 'meteor/meteor';
if (Meteor.isServer) {
Meteor.startup(function () {
Mailer.start();
});
}
To stop the mail service, use Mailer.stop()
.
import {Mailer} from 'meteor/jalik:mailer';
import {Meteor} from 'meteor/meteor';
if (Meteor.isServer) {
Meteor.startup(function () {
Mailer.start();
//...
Mailer.stop();
});
}
To restart the mail service, use Mailer.restart()
.
import {Mailer} from 'meteor/jalik:mailer';
import {Meteor} from 'meteor/meteor';
if (Meteor.isServer) {
Meteor.startup(function () {
Mailer.start();
//...
Mailer.restart();
});
}
To send an email, use Mailer.send(email)
, the content of the email can be raw text if you pass the text
option and/or HTML if you pass html
.
The email object is the same as in the Meteor documentation : https://docs.meteor.com/api/email.html since Mailer
is a smart version of the Email
package.
Sending an email will put it in the queue and send it just after.
import {Mailer} from 'meteor/jalik:mailer';
Mailer.send({
from: 'test@mailer.com',
bcc: ['bcc@example.com'],
cc: ['cc1@example.com','cc2@example.com'],
to: 'you@example.com',
subject: 'Test email',
text: "Mailer Test",
html: "<h1>Mailer Test</h1>",
// Optional: tells the mailer when to send the email
sendAt: new Date(Date.now() + 1000*60*60)
});
To send an email that is not urgent, use Mailer.queue(email)
.
You can manage the order of the queue by setting the priority (ex: 0 will be sent before 99).
import {Mailer} from 'meteor/jalik:mailer';
Mailer.queue({
from: 'test@mailer.com',
to: 'you@example.com',
subject: 'Test email',
text: "Mailer Test",
// Optional: this tells the mailer to send this email before emails with priority more than 2
priority: 2
});
Sometimes errors can happen, in that case the Mailer will simply change the status of the email to failed and will retry to send it on the next execution.
But if you want to do more things you can overwrite the Mailer.onError
callback.
import {Mailer} from 'meteor/jalik:mailer';
Mailer.onError = function(err, emailId) {
console.error(err);
};
You can hook to mailer events by using the following methods.
import {Mailer} from 'meteor/jalik:mailer';
Mailer.onEmailDelayed = function(emailId, email) {
console.log(`The email ${emailId} has been delayed`);
};
Mailer.onEmailFailed = function(emailId, email) {
console.log(`The email ${emailId} has failed sending`);
};
Mailer.onEmailQueued = function(emailId, email) {
console.log(`The email ${emailId} has been added to queue`);
};
Mailer.onEmailRead = function(emailId, httpRequest) {
console.log(`The email ${emailId} has been read`);
};
Mailer.onEmailSent = function(emailId, email) {
console.log(`The email ${emailId} has been sent`);
};
Mailer.onSend = function(emailId, email) {
console.log(`Sending email ${emailId}`);
};
All emails are stored in a Mongo.Collection
, accessible in Mailer.emails
.
let count = 0;
import {Mailer} from 'meteor/jalik:mailer';
count = Mailer.emails.find({status: Mailer.status.PENDING}).count();
// OR
import {Emails} from 'meteor/jalik:mailer';
count = Emails.find({status: Mailer.status.PENDING}).count();
Each email have a status
attribute that can be one of the following :
pending
: the email has been added to the queue and is waiting to be sentcanceled
: the email has been canceledfailed
: an error occurred while sending the email, it will be sent on the next executiondelayed
: the email will be sent on the next execution because it took too much time to be sentsending
: the email is currently sendingsent
: the email has been sentread
: the email has been read (note that it works only with html emails using an embedded img tag)NOTE: statuses are available through Mailer.status
.
WARNING, there are breaking changes in this version, please see below.
Mailer.getReadLink()
, use instead Mailer.getReadUrl()
Mailer.sendEmail()
, use instead Mailer.processEmail()
Mailer.Config
to MailerConfig
These are the new things :
import
and export
syntaxMailer.status
containing all email statusesMailer.config.processOnStart = true
to send emails when service startsMailer.cancelEmail(emailId)
Mailer.checkEmail(email)
Mailer.getReadPath(emailId, redirect)
Mailer.getReadUrl(emailId, redirect)
Mailer.isStarted()
Mailer.onStarted(callback)
Mailer.onStopped(callback)
Mailer.processEmail()
Mailer.replaceLinks(content, emailId)
Mailer.restart()
Mailer.stop()
This project is released under the MIT License.