Quote:
Originally Posted by Alibass
Where did you post the fix for these?
|
Here it is :
Open : Upload/adiinviter/gmail.php
Find :
PHP Code:
$message_body=file_get_contents(dirname(__FILE__)."/msg.txt").$adiinvitermsgchk.$message['attachment'].$message_footer;
Replace with :
PHP Code:
$message_body=file_get_contents(dirname(__FILE__)."/msg.txt").$adiinvitermsgchk.$message['attachment'].$message_footer;
$message_body = str_replace("<<<<receiver>>>>", $name, $message_body);
Repeat above for Upload/adiinviter/yahoo.php
Thats all!
From now on where ever you want to specify name of receiver in message body, just use <<<<receiver>>>> in msg.txt.

For e.g :
Quote:
Hello <<<<receiver>>>>
I would like to invite you to www.mywebsite.com
Please click accept invitation link below..
|