Repository
Current version released
2 years ago
Dependencies
std
X-Email
A Deno email API that uses web providers without any dependencies. See the examples.
Example
import Email from 'https://deno.land/x/xemail/mod.ts';
const email = new Email();
email.key(key);
email.client('sendgrid');
const result = await email.send({
name: 'Plants',
subject: 'Free Planting ๐ ๐',
from: 'noreply@',
to: [ '@gmail.com' ],
title: 'Foo Bar',
provider: 'Super Man',
link: 'https://foobar.com/',
content: {
firstName: 'foo',
lastName: 'bar',
}
});