Skip to content
#

transactional-emails

Here are 60 public repositories matching this topic...

malimccalla
malimccalla commented May 20, 2020

I have the following file that handles my sendgrid set up.

import sgMail from '@sendgrid/mail';

const sendGridApiKey = process.env.SENDGRID_API_KEY;

if (!sendGridApiKey) {
  throw new Error('The sendgrid api key has not been set in the environment variables');
}

sgMail.setApiKey(sendGridApiKey);

export { sgMail };

After setting my api key I need to be able to do som

h0jeZvgoxFepBQ2C
h0jeZvgoxFepBQ2C commented Apr 24, 2018

Issue Summary

Right now we are migrating from Mailgun to Sendgrid, due to their generally bad IP reputation on Outlook 365 and other mail service providers. We nearly finished the migration, but right now we are experiencing a showstopper for us:

We have a subdomain for each ouf our customers (customer1.mycompany.com., customernext123.mycompany.com,... and so on) and we also want everyt

benstpierre
benstpierre commented Jun 15, 2018

Issue Summary

The latest sendgrid api does not support Java 9 modules. Not only is there no module-info.java your api uses split packages which disqualifies it from use in the java 9 Module system.

You get this error when you try to use it...

Module 'yourmodule' reads package 'com.sendgrid' from both 'sendgrid.java' and 'java.http.client'

Steps to Reproduce

Try to use sen

Improve this page

Add a description, image, and links to the transactional-emails topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the transactional-emails topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.