0
私はSparkpostクライアントライブラリをJava用に使用しています。設定方法SparkPostのメールアドレスから
fromEmail
とusername
をcontentAttributes
に設定すると、メールで[email protected]の代わりに名前の名前が表示されます。しかし、それは動作しません。メッセージに電子メールの代わりに名前を表示する方法はありますか?ここではJavaのSparkPostライブラリの
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);
名前とメールを直接設定すると機能しますが、別の方法から送信すると機能しません。なぜこのように動作するのか分かりません。 ありがとうございました! –
正確に何を意味するのかよくわかりません。しかし、バグだと思ったら、GitHubで問題を作り出すことができたらうれしいでしょう。この問題はhttps://github.com/SparkPost/java-sparkpost/issuesで作成できます – Yepher