Skip to content
#

email

Here are 4,096 public repositories matching this topic...

cketti
cketti commented Aug 1, 2021

Currently support for server-side search is disabled by default. It has to be enabled under Settings > [Account] > Search > Enable server search.
I can't think of a good reason why that is. Performing a search on the server is always an additional button press anyway. So we might as well get rid of this setting and always allow server-side search (if supported).

Places that need modifying:

check-if-email-exists
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

Improve this page

Add a description, image, and links to the email 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 email topic, visit your repo's landing page and select "manage topics."

Learn more