Send With Confidence
Partner with the email service trusted by developers and marketers for time-savings, scalability, and delivery expertise.
Time to read: 2 minutes
which goapp
It should print out the location of the goapp binary.go get github.com/sendgrid/sendgrid-go
go get github.com/go-martini/martini
goapp deploy
Partner with the email service trusted by developers and marketers for time-savings, scalability, and delivery expertise.
package demo | |
import ( | |
"appengine" | |
"appengine/urlfetch" | |
"github.com/go-martini/martini" | |
"github.com/sendgrid/sendgrid-go" | |
"net/http" | |
) | |
func init() { | |
sg := sendgrid.NewSendGridClient("SENDGRID_USERNAME", "SENDGRID_PASSWORD") | |
m := martini.Classic() | |
m.Get("/:email", func(r *http.Request, params martini.Params) string { | |
context := appengine.NewContext(r) | |
sg.Client = urlfetch.Client(context) | |
email := sendgrid.NewMail() | |
email.AddTo(params["email"]) | |
email.SetSubject("Hello!") | |
email.SetText("This was sent from your sample app!") | |
email.SetFrom("yamil@sendgrid.com") | |
email.SetFromName("Yamil @elbuo8") | |
if e := sg.Send(email); e == nil { | |
return "Sent!" | |
} else { | |
context.Infof("%v", e) | |
return "Oups" | |
} | |
}) | |
http.Handle("/", m) | |
} |
context := appengine.NewContext(r) | |
sg.Client = urlfetch.Client(context) |