sendgrid

package module
v4.0.0-rc.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 24, 2024 License: MIT Imports: 55 Imported by: 0

README

Twilio SendGrid Logo

Test and Deploy GoDoc MIT licensed Twitter Follow GitHub contributors Open Source Helpers

This library allows you to quickly and easily use the Twilio SendGrid Web API v3 via Go.

Version 3.X.X of this library provides full support for all Twilio SendGrid Web API v3 endpoints, including the new v3 /mail/send.

This library represents the beginning of a new path for Twilio SendGrid. We want this library to be community driven and Twilio SendGrid led. We need your help to realize this goal. To help make sure we are building the right things in the right order, we ask that you create issues and pull requests or simply upvote or comment on existing issues or pull requests.

If you need help using SendGrid, please check the Twilio SendGrid Support Help Center.

Table of Contents

Installation

Supported Versions

This library supports the following Go implementations:

  • Go 1.14
  • Go 1.15
  • Go 1.16
  • Go 1.17
  • Go 1.18
  • Go 1.19

Prerequisites

  • The Twilio SendGrid service, starting at the free level, to send up to 40,000 emails for the first 30 days, then send 100 emails/day free forever or check out our pricing.

Setup Environment Variables

Update the development environment with your SENDGRID_API_KEY, for example:

echo "export SENDGRID_API_KEY='YOUR_API_KEY'" > sendgrid.env
echo "sendgrid.env" >> .gitignore
source ./sendgrid.env

Install Package

go get github.com/sendgrid/sendgrid-go

Dependencies

Setup Environment Variables

Initial Setup
cp .env_sample .env
Environment Variable

Update the development environment with your SENDGRID_API_KEY, for example:

echo "export SENDGRID_API_KEY='YOUR_API_KEY'" > sendgrid.env
echo "sendgrid.env" >> .gitignore
source ./sendgrid.env

Quick Start

Hello Email

The following is the minimum needed code to send an email with the /mail/send Helper (here is a full example):

Using Autogenerated Code
package main

import (
	"encoding/json"
	"fmt"
	"github.com/sendgrid/sendgrid-go/v4"
	MailV3 "github.com/sendgrid/sendgrid-go/v4/rest/api/v3/mail"
	"net/http"
	"os"
)

func main() {
	client := sendgrid.NewRestClientWithParams(sendgrid.ClientParams{
		ApiKey: os.Getenv("SENDGRID_API_KEY"),
	})
	name := "John Doe"
	subject := "Sending with Twilio SendGrid is Fun"
	mailTo := &MailV3.MailTo{Email: "test@example.com"}
	to := []MailV3.MailTo{*mailTo}
	sendMailRequest := MailV3.SendMailRequest{
		From:             MailV3.MailFrom{Name: &name, Email: VERIFIED_EMAIL},
		ReplyTo:          mailTo,
		Subject:          &subject,
		Personalizations: []MailV3.SendMailRequestPersonalizationsInner{{To: to}},
		Content:          &[]MailV3.SendMailRequestContentInner{{Type: "text/plain", Value: "Abc"}},
	}
	sendMailParam := &MailV3.SendMailParam{SendMailRequest: &sendMailRequest}
	resp, err := client.MailV3.SendMail(sendMailParam)
	if err != nil {
		fmt.Println("Error sending mail: " + err.Error())
	} else {
		response, _ := json.Marshal(resp)
		var ps http.Response
		json.Unmarshal(response, &ps)
		fmt.Println(ps.StatusCode)
		fmt.Println(ps.Body)
		fmt.Println(ps.Header)
	}
}
With Mail Helper Class
package main

import (
	"fmt"
	"log"
	"os"

	"github.com/sendgrid/sendgrid-go"
	"github.com/sendgrid/sendgrid-go/helpers/mail"
)

func main() {
	from := mail.NewEmail("Example User", "test@example.com")
	subject := "Sending with Twilio SendGrid is Fun"
	to := mail.NewEmail("Example User", "test@example.com")
	plainTextContent := "and easy to do anywhere, even with Go"
	htmlContent := "<strong>and easy to do anywhere, even with Go</strong>"
	message := mail.NewSingleEmail(from, subject, to, plainTextContent, htmlContent)
	client := sendgrid.NewSendClient(os.Getenv("SENDGRID_API_KEY"))
	response, err := client.Send(message)
	if err != nil {
		log.Println(err)
	} else {
		fmt.Println(response.StatusCode)
		fmt.Println(response.Body)
		fmt.Println(response.Headers)
	}
}

The NewEmail constructor creates a personalization object for you. Here is an example of how to add to it.

Without Mail Helper Class

The following is the minimum needed code to send an email without the /mail/send Helper (here is a full example):

package main

import (
	"fmt"
	"github.com/sendgrid/sendgrid-go"
	"log"
	"os"
)

func main() {
	request := sendgrid.GetRequest(os.Getenv("SENDGRID_API_KEY"), "/v3/mail/send", "https://api.sendgrid.com")
	request.Method = "POST"
	request.Body = []byte(` {
	"personalizations": [
		{
			"to": [
				{
					"email": "test@example.com"
				}
			],
			"subject": "Sending with Twilio SendGrid is Fun"
		}
	],
	"from": {
		"email": "test@example.com"
	},
	"content": [
		{
			"type": "text/plain",
			"value": "and easy to do anywhere, even with Go"
		}
	]
}`)
	response, err := sendgrid.API(request)
	if err != nil {
		log.Println(err)
	} else {
		fmt.Println(response.StatusCode)
		fmt.Println(response.Body)
		fmt.Println(response.Headers)
	}
}

General v3 Web API Usage

package main

import (
	"fmt"
	"github.com/sendgrid/sendgrid-go"
	"log"
	"os"
)

func main() {
	request := sendgrid.GetRequest(os.Getenv("SENDGRID_API_KEY"), "/v3/api_keys", "https://api.sendgrid.com")
	request.Method = "GET"

	response, err := sendgrid.API(request)
	if err != nil {
		log.Println(err)
	} else {
		fmt.Println(response.StatusCode)
		fmt.Println(response.Body)
		fmt.Println(response.Headers)
	}
}

Processing Inbound Email

Please see our helper for utilizing our Inbound Parse webhook.

Usage

Use Cases

Examples of common API use cases, such as how to send an email with a transactional template.

Announcements

All updates to this library are documented in our CHANGELOG and releases.

How to Contribute

We encourage contribution to our libraries (you might even score some nifty swag), please see our CONTRIBUTING guide for details.

Quick links:

Troubleshooting

Please see our troubleshooting guide for common library issues.

About

sendgrid-go is maintained and funded by Twilio SendGrid, Inc. The names and logos for sendgrid-go are trademarks of Twilio SendGrid, Inc.

Support

If you need help using SendGrid, please check the Twilio SendGrid Support Help Center.

License

The MIT License (MIT)

Documentation

Overview

* This code was generated by * * SENDGRID-OAI-GENERATOR * * NOTE: This class is auto generated by OpenAPI Generator. * https://openapi-generator.tech * Do not edit the class manually.

Package sendgrid provides bindings for Sendgrid's REST APIs.

Index

Constants

View Source
const (
	Version = "4.0.0-rc.3"
)

Version is this client library's current version

Variables

View Source
var DefaultClient = rest.DefaultClient

DefaultClient is used if no custom HTTP client is defined

Functions

func API

func API(request rest.Request) (*rest.Response, error)

API sets up the request to the Twilio SendGrid API, this is main interface. Please use the MakeRequest or MakeRequestAsync functions instead. (deprecated)

func GetRequest

func GetRequest(key, endpoint, host string) rest.Request

GetRequest @return [Request] a default request object

func GetRequestSubuser

func GetRequestSubuser(key, endpoint, host, subuser string) rest.Request

GetRequestSubuser like GetRequest but with On-Behalf of Subuser @return [Request] a default request object

func GetTwilioEmailRequest

func GetTwilioEmailRequest(twilioEmailOptions TwilioEmailOptions) rest.Request

GetTwilioEmailRequest create Request @return [Request] a default request object

func MakeRequest

func MakeRequest(request rest.Request) (*rest.Response, error)

MakeRequest attempts a Twilio SendGrid request synchronously.

func MakeRequestAsync

func MakeRequestAsync(request rest.Request) (chan *rest.Response, chan error)

MakeRequestAsync attempts a request asynchronously in a new go routine. This function returns two channels: responses and errors. This function will retry in the case of a rate limit.

func MakeRequestAsyncWithContext

func MakeRequestAsyncWithContext(ctx context.Context, request rest.Request) (chan *rest.Response, chan error)

MakeRequestAsyncWithContext attempts a request asynchronously in a new go routine with context.Context. This function returns two channels: responses and errors. This function will retry in the case of a rate limit.

func MakeRequestRetry

func MakeRequestRetry(request rest.Request) (*rest.Response, error)

MakeRequestRetry a synchronous request, but retry in the event of a rate limited response.

func MakeRequestRetryWithContext

func MakeRequestRetryWithContext(ctx context.Context, request rest.Request) (*rest.Response, error)

MakeRequestRetryWithContext a synchronous request with context.Context, but retry in the event of a rate limited response.

func MakeRequestWithContext

func MakeRequestWithContext(ctx context.Context, request rest.Request) (*rest.Response, error)

MakeRequestWithContext attempts a Twilio SendGrid request synchronously with context.Context.

func SetDataResidency

func SetDataResidency(request rest.Request, region string) (rest.Request, error)

SetDataResidency modifies the host as per the region

* This allows support for global and eu regions only. This set will likely expand in the future. * Global should be the default * Global region means the message should be sent through: * HTTP: api.sendgrid.com * EU region means the message should be sent through: * HTTP: api.eu.sendgrid.com

@return [Request] the modified request object

Types

type Client

type Client struct {
	rest.Request
}

Client is the Twilio SendGrid Go client

func NewSendClient

func NewSendClient(key string) *Client

NewSendClient constructs a new Twilio SendGrid client given an API key

func NewTwilioEmailSendClient

func NewTwilioEmailSendClient(username, password string) *Client

NewTwilioEmailSendClient constructs a new Twilio Email client given a username and password

func (*Client) Send

func (cl *Client) Send(email *mail.SGMailV3) (*rest.Response, error)

Send sends an email through Twilio SendGrid

func (*Client) SendWithContext

func (cl *Client) SendWithContext(ctx context.Context, email *mail.SGMailV3) (*rest.Response, error)

SendWithContext sends an email through Twilio SendGrid with context.Context.

type ClientParams

type ClientParams struct {
	ApiKey string
	Client client.BaseClient
}

type Meta

type Meta struct {
	FirstPageURL    *string `json:"first_page_url"`
	Key             *string `json:"key"`
	LastPageURL     *string `json:"last_page_url,omitempty"`
	NextPageURL     *string `json:"next_page_url"`
	Page            *int    `json:"page"`
	PageSize        *int    `json:"page_size"`
	PreviousPageURL *string `json:"previous_page_url"`
	URL             *string `json:"url"`
}

Meta holds relevant pagination resources.

type RestClient

type RestClient struct {
	*client.RequestHandler
	AccountProvisioningV3   *AccountProvisioningV3.ApiService
	AlertsV3                *AlertsV3.ApiService
	ApiKeysV3               *ApiKeysV3.ApiService
	DomainAuthenticationV3  *DomainAuthenticationV3.ApiService
	EmailActivityV3         *EmailActivityV3.ApiService
	EmailValidationV3       *EmailValidationV3.ApiService
	EnforcedTlsV3           *EnforcedTlsV3.ApiService
	IntegrationsV3          *IntegrationsV3.ApiService
	IpAccessManagementV3    *IpAccessManagementV3.ApiService
	IpAddressManagementV3   *IpAddressManagementV3.ApiService
	IpWarmupV3              *IpWarmupV3.ApiService
	IpsV3                   *IpsV3.ApiService
	LinkBrandingV3          *LinkBrandingV3.ApiService
	LmcCampaignsV3          *LmcCampaignsV3.ApiService
	LmcContactdbV3          *LmcContactdbV3.ApiService
	LmcSendersV3            *LmcSendersV3.ApiService
	MailV3                  *MailV3.ApiService
	MailSettingsV3          *MailSettingsV3.ApiService
	McContactsV3            *McContactsV3.ApiService
	McCustomFieldsV3        *McCustomFieldsV3.ApiService
	McDesignsV3             *McDesignsV3.ApiService
	McListsV3               *McListsV3.ApiService
	McSegmentsV3            *McSegmentsV3.ApiService
	McSegments2V3           *McSegments2V3.ApiService
	McSendersV3             *McSendersV3.ApiService
	McSinglesendsV3         *McSinglesendsV3.ApiService
	McStatsV3               *McStatsV3.ApiService
	McTestV3                *McTestV3.ApiService
	PartnerV3               *PartnerV3.ApiService
	RecipientsDataErasureV3 *RecipientsDataErasureV3.ApiService
	ReverseDnsV3            *ReverseDnsV3.ApiService
	ScheduledSendsV3        *ScheduledSendsV3.ApiService
	ScopesV3                *ScopesV3.ApiService
	SeqV3                   *SeqV3.ApiService
	SsoV3                   *SsoV3.ApiService
	StatsV3                 *StatsV3.ApiService
	SubusersV3              *SubusersV3.ApiService
	TeammatesV3             *TeammatesV3.ApiService
	TemplatesV3             *TemplatesV3.ApiService
	TrackingSettingsV3      *TrackingSettingsV3.ApiService
	UserV3                  *UserV3.ApiService
	VerifiedSendersV3       *VerifiedSendersV3.ApiService
}

RestClient provides access to Sendgrid services.

func NewRestClient

func NewRestClient() *RestClient

NewRestClient provides an initialized Sendgrid RestClient.

func NewRestClientWithParams

func NewRestClientWithParams(params ClientParams) *RestClient

NewRestClientWithParams provides an initialized Sendgrid RestClient with params.

func (*RestClient) SetEdge

func (c *RestClient) SetEdge(edge string)

SetEdge sets the Edge for the Sendgrid request. Not supported in sendgrid currently

func (*RestClient) SetRegion

func (c *RestClient) SetRegion(region string)

SetRegion sets the Region for the Sendgrid request. Defaults to "us1" if an edge is provided.

func (*RestClient) SetTimeout

func (c *RestClient) SetTimeout(timeout time.Duration)

SetTimeout sets the Timeout for Sendgrid HTTP requests.

type TwilioEmailOptions

type TwilioEmailOptions struct {
	Username string
	Password string
	Endpoint string
	Host     string
}

TwilioEmailOptions for GetTwilioEmailRequest

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL