How can I send email using a transactional email template with SendGrid.
I am using the email
package from meteorjs and I am able to send simple emails through
Email.send({
from: "myemail@gmail.com",
to: "somebodyelses.email@gmail.com",
subject: "A sample subject",
text: "Here is some text."
});
I can't find meteorjs packages either.