gpt4 book ai didi

java - 如何将 From 设置为 SparkPost 电子邮件中的名称

转载 作者:行者123 更新时间:2023-12-02 13:13:54 25 4
gpt4 key购买 nike

我正在使用 Sparkpost java 客户端库。

当我将 fromEmailusername 设置为 contentAttributes 时,我希望在我的电子邮件中看到 Name Name 而不是 name@mydomain.com得到。但这不起作用。有没有办法在消息中显示姓名而不是电子邮件?

place where I need my name instead of email address

TemplateContentAttributes contentAttributes = new TemplateContentAttributes();

AddressAttributes addressAttributes = new AddressAttributes();
addressAttributes.setName(username);
addressAttributes.setEmail(fromEmail);

contentAttributes.setFrom(addressAttributes);
contentAttributes.setSubject(subject);
contentAttributes.setHtml(html);
contentAttributes.setText(text);

最佳答案

这里是 Java SparkPost 库的维护者。我刚刚修改了这个sample .

我把它改成这样:

TemplateContentAttributes contentAttributes = new TemplateContentAttributes();
AddressAttributes fromAddress = new AddressAttributes(from);
fromAddress.setName("My Name");
contentAttributes.setFrom(fromAddress);

这就是结果 enter image description here

“用户名”是否可能是一个空字符串。如果您查看电子邮件客户端中的源代码,您会看到友好的名称吗?

如果您仍然遇到问题,请分享发送到服务器的 JSON。

关于java - 如何将 From 设置为 SparkPost 电子邮件中的名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43855542/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com