Categorygithub.com/sendpost/sendpost_go_sdk
repositorypackage
0.0.0-20230928113950-3603ab1ea363
Repository: https://github.com/sendpost/sendpost_go_sdk.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

Go API client for sendpost

Email API and SMTP relay to not just send and measure email sending, but also alert and optimise. We provide you with tools, expertise and support needed to reliably deliver emails to your customers inboxes on time, every time.

Installation

Install the following dependencies:

go get github.com/sendpost/sendpost_go_sdk

Put the package under your project folder and add the following in import:

import (
	sendpost "github.com/sendpost/sendpost_go_sdk"
)

Getting Started

Please follow the installation instruction and execute the following Go code:

cfg := sendpost.NewConfiguration()
client := sendpost.NewAPIClient(cfg)

emailMessage := sendpost.EmailMessage{}
emailMessage.SetSubject("Hello World")
emailMessage.SetHtmlBody("<strong>it works!</strong>")
emailMessage.SetIppool("PiedPiper")
emailMessage.From = &sendpost.From{}
emailMessage.From.SetEmail("[email protected]")
tos := make([]sendpost.To, 0)
to := &sendpost.To{}
to.SetEmail("[email protected]")
tos = append(tos, *to)
emailMessage.To = tos

emailRequest := sendpost.ApiSendEmailRequest{}
emailRequest = emailRequest.XSubAccountApiKey("your_api_key")
emailRequest = emailRequest.EmailMessage(emailMessage)
res, _, err := client.EmailApi.SendEmailExecute(emailRequest)

Example with cc, bcc and template:

cfg := sendpost.NewConfiguration()
client := sendpost.NewAPIClient(cfg)

emailMessage := sendpost.EmailMessage{}
emailMessage.SetSubject("Hello World")
emailMessage.SetHtmlBody("<strong>it works!</strong>")
emailMessage.SetIppool("PiedPiper")
emailMessage.From = &sendpost.From{}
emailMessage.From.SetEmail("[email protected]")

emailMessage.SetTemplate("Welcome Mail")

tos := make([]sendpost.To, 0)
to := &sendpost.To{}
to.SetEmail("[email protected]")

ccs := make([]sendpost.CopyTo, 0)
cc := &sendpost.CopyTo{}
cc.SetEmail("[email protected]")
ccs = append(ccs, *cc)
to.SetCc(ccs)
bccs := make([]sendpost.CopyTo, 0)
bcc := &sendpost.CopyTo{}
bcc.SetEmail("[email protected]")
bccs = append(bccs, *bcc)
to.SetBcc(bccs)

tos = append(tos, *to)
emailMessage.To = tos

emailRequest := sendpost.ApiSendEmailWithTemplateRequest{}
emailRequest = emailRequest.XSubAccountApiKey("your_api_key")
emailRequest = emailRequest.EmailMessage(emailMessage)
res, _, err := client.EmailApi.SendEmailWithTemplateExecute(emailRequest)

Suppressions

Create Suppressions

cfg := sendpost.NewConfiguration()
client := sendpost.NewAPIClient(cfg)

rSuppression := sendpost.RSuppression{}
suppressionEmails := make([]sendpost.SuppressionEmail, 0)
email := "richard@piedpiper_fake.com"
suppressionEmails = append(suppressionEmails, sendpost.SuppressionEmail{
	Email: &email,
})
rSuppression.SetHardBounce(suppressionEmails)

// fields are optional, but you have to send at least one of them.

//rSuppression.SetManual(suppressionEmails)
//rSuppression.SetUnsubscribe(suppressionEmails)
//rSuppression.SetSpamComplaint(suppressionEmails)

createSuppressionReq := sendpost.ApiCreateSuppressionsRequest{}
createSuppressionReq = createSuppressionReq.XSubAccountApiKey("your_api_key")
createSuppressionReq = createSuppressionReq.RSuppression(rSuppression)
res, _, err := client.SuppressionApi.CreateSuppressionsExecute(createSuppressionReq)

Get Suppressions

cfg := sendpost.NewConfiguration()
client := sendpost.NewAPIClient(cfg)

getSuppressionReq := sendpost.ApiGetSuppressionsRequest{}
getSuppressionReq = getSuppressionReq.XSubAccountApiKey("your_api_key")
getSuppressionReq = getSuppressionReq.From("2023-06-07")
getSuppressionReq = getSuppressionReq.To("2023-08-08")
getSuppressionReq = getSuppressionReq.Offset(0)
getSuppressionReq = getSuppressionReq.Limit(10)
getSuppressionReq = getSuppressionReq.Search("")

res, _, err := client.SuppressionApi.GetSuppressionsExecute(getSuppressionReq)

Delete Suppressions

cfg := sendpost.NewConfiguration()
client := sendpost.NewAPIClient(cfg)

rDSuppression := sendpost.RDSuppression{}
suppressionEmails := make([]sendpost.SuppressionEmail, 0)
email := "richard@piedpiper_fake.com"
suppressionEmails = append(suppressionEmails, sendpost.SuppressionEmail{
	Email: &email,
})
rDSuppression.SetSuppressions(suppressionEmails)

deleteSuppressionReq := sendpost.ApiDeleteSuppressionRequest{}
deleteSuppressionReq = deleteSuppressionReq.XSubAccountApiKey("your_api_key")
deleteSuppressionReq = deleteSuppressionReq.RDSuppression(rDSuppression)
res, _, err := client.SuppressionApi.DeleteSuppressionExecute(deleteSuppressionReq)

Count Suppressions

cfg := sendpost.NewConfiguration()
client := sendpost.NewAPIClient(cfg)

countSuppressionReq := sendpost.ApiCountRequest{}
countSuppressionReq = countSuppressionReq.XSubAccountApiKey("your_api_key")
countSuppressionReq = countSuppressionReq.From("2023-06-07")
countSuppressionReq = countSuppressionReq.To("2023-08-08")

res, _, err := client.SuppressionApi.CountExecute(countSuppressionReq)

Documentation for API Endpoints

All URIs are relative to https://api.sendpost.io/api/v1

ClassMethodHTTP requestDescription
EmailAPISendEmailPost /subaccount/email/
EmailAPISendEmailWithTemplatePost /subaccount/email/template
SuppressionAPICountGet /subaccount/suppression/count
SuppressionAPICreateSuppressionsPost /subaccount/suppression/
SuppressionAPIDeleteSuppressionDelete /subaccount/suppression/
SuppressionAPIGetSuppressionsGet /subaccount/suppression/

Documentation For Models

Documentation For Authorization

Endpoints do not require authorization.

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

[email protected]