如何在使用Swiftmailer时设置回复

时间:2011-08-03 23:48:58

标签: php email swiftmailer

使用Swiftmailer时如何设置回复。文档提到了函数 setReplyTo(),但没有关于如何使用它的具体说明。

任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:45)

我可以确认setReplyTo方法的工作方式与(例如)setCC方法相同。

$message->setReplyTo(array(
  'person1@example.org',
  'person2@otherdomain.org' => 'Person 2 Name',
  'person3@example.org',
  'person4@example.org',
  'person5@example.org' => 'Person 5 Name'
));

答案 1 :(得分:0)

对于那些与我一样感到困惑的人,您不能在Swift_RecipientList上运行state,但可以直接在Swift_Message上运行:

const { step } = this.state;
this.setState({
  step: step + 1
});