在 SendGrid 的邮件发送中,你可以通过 ReplyTo
字段设置回复邮箱。这将指定邮件接收者回复时使用的邮箱地址。以下是如何在代码中设置回复邮箱的示例。
package main import ( "fmt" "log" "github.com/sendgrid/sendgrid-go" "github.com/sendgrid/sendgrid-go/helpers/mail" ) func main() { // 创建 SendGrid 客户端 apiKey := "YOUR_SENDGRID_API_KEY" client := sendgrid.NewSendClient(apiKey) // 创建发件人和内容 from := mail.NewEmail("Example User", "example@example.com") subject := "Sending with SendGrid is Fun" content := mail.NewContent("text/plain", "and easy to do anywhere, even with Go") // 初始化邮件 to := mail.NewEmail("First Recipient", "recipient1@example.com") m := mail.NewV3MailInit(from, subject, to, content) // 设置回复邮箱 replyTo := mail.NewEmail("Reply User", "replyto@example.com") m.ReplyTo = replyTo // 发送邮件 response, err := client.Send(m) if err != nil { log.Printf("Error sending email: %v\n", err) return } // 打印响应 fmt.Printf("Response Status Code: %d\n", response.StatusCode) fmt.Printf("Response Body: %s\n", response.Body) fmt.Printf("Response Headers: %v\n", response.Headers) }
创建回复邮箱:
mail.NewEmail()
函数创建一个新的回复邮箱对象,传入名字和邮箱地址。例如 replyTo := mail.NewEmail("Reply User", "replyto@example.com")
。设置 ReplyTo 字段:
replyTo
对象赋值给邮件的 ReplyTo
字段,使用 m.ReplyTo = replyTo
。发送邮件:
标签: 来源:
本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享; 2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关; 3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关; 4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除; 5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。