Bulk Mail With Analytics via SendGrid
You can use SendGrid to power your emails on Google App Engine. Using SendGrid can improve your deliverability and provide transparency into what actually happens to those emails your app sends. You can see statistics on opens, clicks, unsubscribes, spam reports and more through either the SendGrid interface or its API.
Pricing
Google App Engine customers can send 25,000 emails every month for free. Create a SendGrid account * to claim the free emails and to see higher volume plans.
Prerequisites
To begin, you'll need to:
- Create a SendGrid account * and as a Google App Engine developer, you can start with 25,000 free emails per month
- Create a new application or use an existing app
To test have properly set up your environment, verify that the binary goapp is in your PATH. This binary is used to interact with App Engine for Go applications.
Send an email
It's easy to get started with the Go library for SendGrid to send emails from your App Engine apps.
With the prerequisites complete, make sure your development environment is set up on your local machine with the Go client tools.
The last thing you'll need before writing code is to run this command:
go get github.com/sendgrid/sendgrid-go
When you import this package into your app you'll be able to create SendGrid instances and send mail with simple commands. Importing the library is as simple as:
import (
"appengine/urlfetch"
"github.com/sendgrid/sendgrid-go"
)
Now, from within your app, you can send email with the following few lines:
func handler(w http.ResponseWriter, r *http.Request) {
sg := sendgrid.NewSendGridClient("sendgrid_user", "sendgrid_key")
c := appengine.NewContext(r)
// set http.Client to use the appengine client
sg.Client = urlfetch.Client(c) //Just perform this swap, and you are good to go.
message := sendgrid.NewMail()
message.AddTo("[email protected]")
message.SetSubject("Email From SendGrid")
message.SetHTML("Through AppEngine")
message.SetFrom("[email protected]")
sg.Send(message)
}
You'll want to add your own account details. Then edit the email address and other message content. Of course, you'll also need to run the command to push your app to App Engine, like so:
goapp deploy
If you'd rather start with a full, working app, check out this simple example Google App Engine app . For more information about email in your apps, browse the SendGrid documentation .
Get real-time
In addition to sending email, SendGrid can help you receive email or make sense of the email you’ve already sent. The two real-time webhook solutions can greatly enhance the role email plays in your application.
Event API
Once you start sending email from your app, you'll want to know more about how it's performing. The statistics within SendGrid are one of its best features. The Event API lets you see all this data as one giant firehose. Whenever a recipient opens or clicks an email, for example, SendGrid can send a small bit of descriptive JSON to your Google App Engine app. You can react to the event or store the data for future use.
There are many different applications of event data. Some common uses are to integrate email stats into internal dashboards or use it to respond immediately to unsubscribes and spam reports. Advanced users of the Event API raise the engagement of their emails by sending only to those who have clicked or opened within the last few months.
The Event API documentation shows how to set up the webhook, outlines the nine event types and shows the fields included in event callbacks.
Inbound Parse API
SendGrid is really good at sending email, but there's a lesser-known feature to receive email. The Inbound Parse API can be used for powerful, interactive applications. For example, automate support tickets from customer emails, or collect data via short emails employees dispatch from the road. NudgeMail's reminder application is even built entirely on the Parse API.
Like the Event API, the Parse API is a webhook that sends data to your application when something new is available. In this case, the webhook is called whenever a new email arrives at the domain you've associated with incoming email. Due to intricacies in the way DNS works for email, you need to assign all incoming mail to the domain or sub-domain you use for the Parse API.
Emails are sent to your application structured as JSON, with sender, recipients, subject and body as different fields. You can even accept attachments, within SendGrid’s limit of messages up to 20 MB in size.
The Parse API documentation has more details, including additional fields sent with every email, as well as instructions for DNS setup and usage.
* Google will be compensated for customers who sign up for a non-free account.