A simple CO wrapper around
yield
Nodemailer from co or koa!
'use strict'
co = require 'co'
comailer = require 'comailer'
transporter = comailer.createTransport
service: 'gmail'
auth:
user: '[email protected]'
pass: 'password'
co ->
# yielding can throw errors you could try/catch or bail out
try
result = yield transporter.sendMail
from: 'sender@address'
to: 'receiver@address'
subject: 'hello'
text: 'hello world!'
console.log result
catch error
console.error error.stack
# if you need to still need to call without yielding:
thunkOfSendMail = transporter.sendMail
from: 'sender@address'
to: 'receiver@address'
subject: 'hello'
text: 'hello world!'
#...
thunkOfSendMail (error, result) ->
if error
console.error error.stack
else
console.log result
'use strict'
var co = require('co');
var comailer = require('comailer');
var transporter = comailer.createTransport({
service: 'gmail',
auth: {
user: '[email protected]',
pass: 'password'
}
});
co(function* () {
// yielding can throw errors you could try/catch or bail out
try {
var result = yield transporter.sendMail({
from: 'sender@address',
to: 'receiver@address',
subject: 'hello',
text: 'hello world!'
});
console.log(result);
} catch (error) {
console.error(error.stack);
}
});
// if you need to still need to call without yielding using the returned thunk directly:
thunkOfSendMail = transporter.sendMail({
from: 'sender@address',
to: 'receiver@address',
subject: 'hello',
text: 'hello world!'
});
//...
thunkOfSendMail(function (error, result) {
if (error) {
console.error(error.stack);
} else {
console.log(result);
}
});