Guest Posted June 16, 2005 Posted June 16, 2005 for some reason today I can not send e-mails from the store to update an order. I get this error Fatal error: Call to undefined function: tep_convert_linefeeds() in /home/prisonpa/public_html/packstore/admin/includes/classes/email.php on line 149 Here is my code. Can anyone help me? /** * Adds plain text. Use this function * when NOT sending html email */ function add_text($text = '') { (149) $this->text = tep_convert_linefeeds(array("\r\n", "\n", "\r"), $this->lf, $text); } /** * Adds a html part to the mail. * Also replaces image names with * content-id's. */
crash3903 Posted June 16, 2005 Posted June 16, 2005 have you edited anything? added a contribution? Regards Mark A Reynolds
Guest Posted June 17, 2005 Posted June 17, 2005 here is what mine looks like and it is working... /** * Adds plain text. Use this function * when NOT sending html email */ function add_text($text = '') { $this->text = tep_convert_linefeeds(array("\r\n", "\n", "\r"), $this->lf, $text); } /** * Adds a html part to the mail. * Also replaces image names with * content-id's. */ Looks to me that it's the same as yours. Try posting the whole file and maybe someone can find something else that is causing your problem. Karen
Recommended Posts
Archived
This topic is now archived and is closed to further replies.