Mandrill回复

时间:2014-05-07 15:50:16

标签: php mandrill

今天我注册了Mandrill帐户以了解它是如何工作的。 This is my PHP code发送一封简单的电子邮件:

<?php

$apikey = 'API_KEY_HERE';

require_once 'Mandrill.php';
$mandrill = new Mandrill($apikey);

$message = new stdClass();
$message->html = "html message";
//$message->text = "text body";
$message->subject = "email subject";
$message->from_email = "from@email.com";
$message->from_name  = "My App Name";
$message->to = array(array("email" => "recipient@email.com"));
$message->track_opens = true;

$response = $mandrill->messages->send($message);

var_dump($response);
?>

此脚本使用this Bitbucket repo

我想知道如何在脚本中插入回复电子邮件地址变量。什么是变量名称?我正在看docs page,但我被困了。

我是PHP的新手。我非常感谢你的帮助。提前谢谢!

1 个答案:

答案 0 :(得分:13)

确定。我找到了。

$message->headers = array('Reply-To' => 'another@email.com');