邮件功能标头
一旦用户访问我网站上的特定页面,我就会使用下面的功能向第三方发送电子邮件 但是,当第三方收到电子邮件并想要回复时,它会返回给我,而不是发送给该用户。 我想添加一个回复字段,但在 drupal 文档中没有找到它。 下面是我的代码
function MYMODULE_mail($key, &$message, $params) {
switch ($key) {
case 'dept':
$message['subject'] = "subject";
$message['body'] = "some text";
break;
}
}
if($GLOBALS['user']->uid){
drupal_mail('MYMODULE', 'dept', '[email protected]', language_default(), $params);
I am using the function below to send out email to a thirdparty once a user comes to a perticular page on my site
However, when the thirdparty recieves the email and wants to reply, it comes back to me instead of going to that user.
I want to add a reply-to field but havent found that anywhere in drupal docs.
Below is my code
function MYMODULE_mail($key, &$message, $params) {
switch ($key) {
case 'dept':
$message['subject'] = "subject";
$message['body'] = "some text";
break;
}
}
if($GLOBALS['user']->uid){
drupal_mail('MYMODULE', 'dept', '[email protected]', language_default(), $params);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
用这个修复它
fixed it using this
要使用回复,请使用以下命令:
To use reply-to use this: