Skip to main content

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',
    }
});