Roundcube Community Forum

 

Mail_Mime Envelope-To header

Started by ddehning, June 05, 2018, 09:57:48 AM

Previous topic - Next topic

ddehning

Hi everyone,

currently I'm working on a plugin for Roundcube using some functions of Mail_Mime.

At one point (Hooks tested: message_before_send, message_ready) I have to replace the recipient of the mail with another one, so I use

$message->get();
$message->headers(array('To'=>implode(',', $recipients)), true);


This code is doing well. But there still is the "Envelope-To"-Header which I can't replace like follows:

$message->headers(array('To'=>implode(',', $recipients), 'Envelope-To'=>implode(',', $recipients)), true);

Am I totally wrong? I'm just stuck with this. Can anyone help?

Sincerely
Dominik

alec

What do you mean replace? Roundcube does not set this header.

ddehning

If it's not roundcube I have to a deeper research.

I change the "to" header and somehow exim or whatever adds the original recipient in the envelope-to header...

Anyhow, thanks for your answer.