/includes/modules/YOUR_TEMPLATE_NAME/create_account.php
around line 350 or so you'll see this section of code.
Add the 3 highlighted lines as shown:```
// initial welcome
$email_text .= EMAIL_WELCOME;
$html_msg['EMAIL_WELCOME'] = str_replace('\n','',EMAIL_WELCOME);
[B] // Add Customer Number to Top of Email
$email_text .= EMAIL_YOUR_CUSTOMER_NUMBER_IS . $_SESSION['customer_id'];
$html_msg['EMAIL_WELCOME'] .= str_replace('\n','',EMAIL_YOUR_CUSTOMER_NUMBER_IS . $_SESSION['customer_id']);
[/B]
if (NEW_SIGNUP_DISCOUNT_COUPON != '' and NEW_SIGNUP_DISCOUNT_COUPON != '0') {
/includes/languages/english/YOUR_TEMPLATE_NAME/create_account.php
add a new definition:
define('EMAIL_YOUR_CUSTOMER_NUMBER_IS', "\n\n" . 'Your customer number with our store is: ');