Hi,
I was wondering if it is possible to send the "invite a friend" emails not only to the invited friend, but also to the system admin?
Thanks,
Wizard247
Hi,
Thanks, |
Edit tellfriend.php available in root folder of your Dolphin script. Search for global $profileID; add global $site; just after global $profileID; Change from $headers .= "From: =?UTF-8?B?" . base64_encode( $_POST['name'] ) . "?= <{$_POST['email']}>"; To as below code. $recipient1 = $site['email']; $headers .= "From: =?UTF-8?B?" . base64_encode( $_POST['name'] ) . "?= <{$_POST['email']}>" . "\r\n" . email will CC to your site admin email id. Another Day past............................. |