View on GitHub

Go Lang Notes

Compilations of Go Lang sample code along with AWS examples. Topped with notes on related topics.

Using SendGrid with GoLang

Visitors

Getting Started

Important: Make sure to change the key value in sendgrid.go

const (
    // Key for SendGrid
    Key = "PUT_YOUR_SENDGRID_KEY_HERE"
)

Import Required Packages

Step 1: Create Sender Object

Here sender is the source that is sending the email

var s models.Sender
s.SenderEmail = "example@test.com"
s.SenderName = "SendGrid"

Step 2: Create Recipient Object/s

Here Recipient is the target that will be receiving the email

Note: If you want to keep the Recipient in CC then set RecipientCCBCC value to “CC” and if you want to keep them in BCC set it to “BCC”, for all other values the user is kept in “TO” target by default.

var r1 models.Recipient
r1.RecipientName = "Akash"
r1.RecipientEmail = "akash_sisodiya@test.com"
r1.RecipientCCBCC = "none"
// r1.RecipientCCBCC = "CC"
// r1.RecipientCCBCC = "BCC"

Step 3: Create Recipients Array

Create an array of Recipients, and add all intended recipient to the array.

(Example: Consider there are 3 users and all are part of one common email, then only append the users, but if you want to send them individually then you will have to create an array of single user only)

var r []models.Recipient
r = append(r, r1)

Step 4: Send Email

Now use method SendEmail(recipients, sender, subject, message) to send an email

subject := "Sample Subject"
plainTextMessage := "This is Test Message!"
htmlTextMessage := "<h1>This is Test Message but in HTML!</h1>"

// Sending one sample Plain Text Email
services.SendEmail(r, s, subject, plainTextMessage)
// Sending one sample HTML body Email
services.SendEmail(r, s, subject, htmlTextMessage)

Final Step: Execute & Check Response

You will get 202 status code if everything goes well.

Troubleshooting

Reference

Source

Visitors