coppermine-gallery.com/forum

Support => Older/other versions => cpg1.2 Standalone Support => Topic started by: Pé on December 05, 2003, 06:33:29 PM

Title: E-card in BC
Post by: on December 05, 2003, 06:33:29 PM
I like the functionality of the e-card, but I would like to know who uses it. Can I change something in the php-code that every e-card is send to me also in BC?
I suppose I have to chance something in this file: mailer.inc.php

Thanks for any help.

Title: E-card in BC
Post by: Nibbler on December 05, 2003, 06:53:42 PM
I havent tested this since I don't use ecards myself, but if you open ecard.php, line 101:


$result = cpg_mail($recipient_email, $subject, $message, 'text/html', $sender_name, $sender_email);

If you duplicate that line and fill in your email in the second occurence it should just send out a card to both yourself and the intended recipient.

eg:

$result = cpg_mail($recipient_email, $subject, $message, 'text/html', $sender_name, $sender_email);
$result = cpg_mail('you@email.com', $subject, $message, 'text/html', $sender_name, $sender_email);
Title: E-card in BC
Post by: on December 05, 2003, 07:24:36 PM
Thanks! It works perfectly!