Hi fellow zenners,

I want to display the "Office Use Only" information section in the Welcome email that is sent to customers, not just in the admin copied email.

I started by trying to move this code located in includes/modules/create_account.php:

Code:
$extra_info=email_collect_extra_info($name,$email_address, $account->fields['customers_firstname'] . ' ' . $account->fields['customers_lastname'], $account->fields['customers_email_address'], $account->fields['customers_telephone'], $account->fields['customers_fax']);
      $html_msg['EXTRA_INFO'] = $extra_info['HTML'];
to right below this line:

Code:
$html_msg['EMAIL_MESSAGE_HTML']  = str_replace('\n','',EMAIL_TEXT);
    $html_msg['EMAIL_CONTACT_OWNER'] = str_replace('\n','',EMAIL_CONTACT);
    $html_msg['EMAIL_CLOSURE']       = nl2br(EMAIL_GV_CLOSURE);
Am I at least on the right path?

I don't think the includes/languages/english/create_account.php file nor the includes/languages/english/email_extras.php files need to be modified...but I am obviously primative at PHP programming so I could be wrong.

My theory is that there is an if statement somewhere that says...
"if this is an admin copy of the email...then print Office Use Only in the email" - basically I need to take away this condition.

Thanks a million always to the awesome zen community for your help.
MCarbone