I have tried and tried to edit the order.php file to change the plain text content that is emailed with an order. No matter what I add no changes occur to my incoming emails.

I have added several new variables to the email_extras.php file including the sample below:

define('FIRST_NAME_C','first:');


I have then tried adding it (and existing variables) to the includes/classes/order.php file but it (or any other variable ever appear in my emails):

I tried like this: (line 894ish)

$this->products_ordered_attributes .= $custom_insertable_text;
$EMAIL_FFIRST_NAME_C;


And like this:

$this->products_ordered_attributes .= $EMAIL_FFIRST_NAME_C;

I've read all I could in this forum, in the wiki, in the tutorials and via Google but I'm beginning to think that it's just broken. (Sorry for a new thread on this but my old one got diverted down a dead-end path).