coppermine-gallery.com/forum

Support => Older/other versions => cpg1.2 Standalone Support => Topic started by: FreeMail on February 25, 2004, 12:59:29 PM

Title: [solved]: e-card: how do i change the subject line?
Post by: FreeMail on February 25, 2004, 12:59:29 PM
How do i change the subject line when album email the e-card to the recepient?  Instead of 'An e-card from **** to you'



TIA!
Title: [solved]: e-card: how do i change the subject line?
Post by: xarumanx on February 25, 2004, 11:41:43 PM
Basically you've got two options:

1) Search in the language File for

$lang_ecard_php['ecard_title']

And replace it with your own Subject. But you'll have to keep the sender_name reference in it.

2) Search for the following line in the ecard.php File (around line 100)

    $subject = sprintf($lang_ecard_php['ecard_title'], $sender_name);

and replace it with

    $subject = "Your subject";
Title: [solved]: e-card: how do i change the subject line?
Post by: FreeMail on February 27, 2004, 12:09:45 AM
Thanks so much!! :) :)