作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Sparkpost java 客户端库。
当我将 fromEmail
和 username
设置为 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);
“用户名”是否可能是一个空字符串。如果您查看电子邮件客户端中的源代码,您会看到友好的名称吗?
如果您仍然遇到问题,请分享发送到服务器的 JSON。
关于java - 如何将 From 设置为 SparkPost 电子邮件中的名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43855542/
我是一名优秀的程序员,十分优秀!