Quote:
Originally Posted by joyfulmiller
I'll double check that I didn't miss anything, but I was really carefully to do everything exactly as described for the install. Everything seemed to go smoothly with no errors. I remember doing the template edit, but I guess I didn't do it right?
Can you be more specific about the "file edit"? I'm not sure if I know which "file edit" you're referring to.
|
Step 4 of the install.txt file states:
Code:
4. FILE EDIT
In:
/includes/class_mail.php
**************
FIND:
**************
$headers .= preg_replace("#(\r\n|\r|\n)#s", $delimiter, $uheaders);
unset($uheaders);
**************
AND ADD ABOVE IT:
**************
// ##### START MOD - Email Integration #####
if (preg_match("/(.*)emailintegration(.*)/", $uheaders, $uheaderparts))
{
$eiheaders = $uheaders;
}
// ##### END MOD - Email Integration #####
**************
SAVE AND UPLOAD!
**************