Skip to content

Latest commit

 

History

History

sendgrid

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Java SendGrid Email Sample for Google App Engine Standard Environment

Open in Cloud Shell

This sample demonstrates how to use SendGrid on Google App Engine standard environment.

See the sample application documentaion for more detailed instructions.

For more information about SendGrid, see their documentation.

Setup

Before you can run or deploy the sample, you will need to do the following:

  1. Sign up with SendGrid via the GCP Console and as a Google Cloud Platform developer, you can start with 12,000 free emails per month.

  2. Create an API key in SendGrid and configure your SendGrid settings in the environment variables section in appengine-web.xml.

    <env-variables>
      <env-var name="SENDGRID_API_KEY" value="YOUR-SENDGRID-API-KEY" />
      <env-var name="SENDGRID_SENDER" value="YOUR-SENDGRID-SENDER" />
    </env-variables>

Running locally

You can run the application locally and send emails from your local machine. You will need to set environment variables before starting your application:

export SENDGRID_API_KEY=[your-sendgrid-api-key]
export SENDGRID_SENDER=[your-sendgrid-sender-email-address]
mvn clean jetty:run

To send an email, visit localhost:8080/send/email?to=[EMAIL-ADDRESS] in a web browser.

Deploy

Deploy your application to App Engine standard with the following command:

mvn clean package appengine:deploy

To send an email, visit https://[YOUR-PROJECT-ID].appspot.com/send/email?to=[EMAIL-ADDRESS] in a web browser.