Add message to footer of outgoing mails.
Edit config/defaults.inc.php
Add
$config['generic_message_footer'] = 'message_footer.txt'; $config['generic_message_footer_html'] = 'message_footer.txt';
Now in root folder of roundcube, create a file message_footer.txt
Add
----------------------------- Get Free [email protected] email address.
--- config/defaults.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) create mode 100644 message_footer.txt diff --git a/config/defaults.inc.php b/config/defaults.inc.php index ffce8e7..ba429fd 100644 --- a/config/defaults.inc.php +++ b/config/defaults.inc.php @@ -427,7 +427,7 @@ $config['include_host_config'] = false; // path to a text file which will be added to each sent message // paths are relative to the Roundcube root folder -$config['generic_message_footer'] = ''; +$config['generic_message_footer'] = 'message_footer.txt'; // path to a text file which will be added to each sent HTML message // paths are relative to the Roundcube root folder diff --git a/message_footer.txt b/message_footer.txt new file mode 100644 index 0000000..e69de29 -- 1.7.9.5
See Roundcube