Giter VIP home page Giter VIP logo

Comments (5)

childish-sambino avatar childish-sambino commented on August 24, 2024 1

From the API docs for the templateId param:

An email template ID. A template that contains a subject and content — either text or html — will override any subject and content values specified at the personalizations or message level.

Based on this, there is an API limitation where the template's subject/content will always win out.

from sendgrid-go.

willfolsom avatar willfolsom commented on August 24, 2024 1

@childish-sambino That is unfortunate. Maybe in the future this will be allowed. I have direct use cases for it.

from sendgrid-go.

JenniferMah avatar JenniferMah commented on August 24, 2024

Hi @willfolsom,
Based on the two lines of code you provided it looks like you are setting the subject correctly. Can you include the rest of your code that you are using to send email with Sendgrid-go? Have you had a chance to try out the code sample for sending a personalization email?

from sendgrid-go.

willfolsom avatar willfolsom commented on August 24, 2024

Yes I've tried the snippet. Here is my implementation.

func (sgi *SendGridInteractor) SendSendGridEmail(emailInfo SendGridEmailInfo) error {
	newV3Mail := mail.NewV3Mail()

	newV3Mail.SetFrom(mail.NewEmail(sgi.config.DefaultFromName, sgi.config.DefaultFromEmail))

	if emailInfo.TemplateId == "" {
		emailInfo.TemplateId = BaseTemplateWithMessageBodyId
	}

	newV3Mail.SetTemplateID(emailInfo.TemplateId)

	personalization := mail.NewPersonalization()
	tos := []*mail.Email{
		mail.NewEmail(emailInfo.ToName, emailInfo.ToEmail),
	}
	personalization.AddTos(tos...)

	for _, element := range *emailInfo.MessageBodyValues {
		personalization.SetDynamicTemplateData(element.Key, element.Value)
	}

	if emailInfo.Subject == "" {
		emailInfo.Subject = DefaultEmailSubject
	}

	// The subject can be overridden here, otherwise it uses the template subject.
	// Currently getting emails with (no subject) if it's overridden, but I've asked about this on the repo.
	// This doesn't resolve it either: --> newV3Mail.Subject = "OVERRIDE!"
	personalization.Subject = emailInfo.Subject
	newV3Mail.AddPersonalizations(personalization)

	request := sendgrid.GetRequest(sgi.config.SecretKey, sgi.config.Endpoint, sgi.config.Host)
	request.Method = "POST"
	request.Body = mail.GetRequestBody(newV3Mail)

	if err := sgi.port.SendSendGridRequest(&request); err != nil {
		return err
	}

	return nil
}

from sendgrid-go.

willfolsom avatar willfolsom commented on August 24, 2024

@JenniferMah Any update?

from sendgrid-go.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.