当我使用SparkPost::Client.new().send_message(param1,param2,etc...)
时,似乎无法在vals
哈希中设置reply_to
。Egs在这里:https://github.com/SparkPost/ruby-sparkpost
这意味着,当我通过客户端发送电子邮件时,我希望最终用户(接收电子邮件)自动让reply_to
属性(而不是from
属性)填写给定ESP的回复:字段。
我也看到了这一点:https://github.com/SparkPost/ruby-sparkpost/blob/master/examples/transmission/with_template.rb.它使用CCD_ 6。
有人知道如何设置reply_to
,这样它就不会简单地默认为from
的电子邮件地址吗?
想明白了。目前,必须使用SparkPost::Client.new().transmission.send_payload
方法并自己构建有效负载。
示例:
payload = {
recipients: [{tags:[tag1,tag2],address:{email:foo@bar.com}}],
content: {
from: "Someone <no-reply@somewhere.io>",
subject: "Your awesome subject",
reply_to: "Someone Else <totally.hit.me.up@somewhere.else.io>",
html:"<h1>Hello World</h1>"
}
}
SparkPost::Client.new().transmission.send_payload(payload)