Roundcube Community Forum

 

Global signature

Started by nolit, January 09, 2007, 06:44:39 PM

Previous topic - Next topic

nolit

I was just wondering if this plug in has been created already. I think it is a cool idea to force all users to have a signature of a link to your website. Something like what yahoo has at the bottom of each email.

It will be a cool way to really advertise your site.

zorensen

Hi.

This has already been integrated in RoundCube, and you can use it by editing youy main.inc.php config file.
Look after this string :
$rcmail_config['generic_message_footer'] = '';

Edit this to whatever you like, for example:
$rcmail_config['generic_message_footer'] = '//www.roundcube.net';


Save and upload to your server when you are done, and you will get this in the footer of every mail sent with your RoundCube system :-)

nolit


zorensen

No problem, we are all here to help 8)

jpweb

I have added footer but it will not show in emails

nolit

zorensen's exmple was actually wrong. you need to put in the file name of the text file which will be your footer.

create a text file and put in the footer you want to appear. Then save it as footer.txt or whatever you want to name it then edit your main.inc.php

$rcmail_config['generic_message_footer'] = 'footer.txt';

hope this helps


jpweb

Thanks TXT file worked for me.

minoan

This worked for me too but there is a small problem.

I created the .txt file and it inserts the text from the .txt file in every message with out brakes.

For example the .txt file looks like:
__________________________
Here is the footer text

but the sent e-mail looks like:

Hello guys!
This is a test e-mail!__________________________Here is the footer text

What can i do to make it have brakes?

Adam

Quote from: minoan This worked for me too but there is a small problem.

I created the .txt file and it inserts the text from the .txt file in every message with out brakes.

For example the .txt file looks like:
__________________________
Here is the footer text

but the sent e-mail looks like:

Hello guys!
This is a test e-mail!__________________________Here is the footer text

What can i do to make it have brakes?

Anyone got an answer for this? I'm struggling with the same problem!

Thanks,

Adam

Adam

Ok,

I have put html breaks in (
) and that works when composing in html format.

In plain text it displays the
, However if these are taken out it all works ok.

Anyone know how to make it work whether the email is created in HTML or plain text?

Thanks,
Adam

alex@ddd


Adam

Quote from: alex@ddd Use /n

sadly this doesn't work for either.

toby86

you will have to use \n and NOT /n ...