only2empires Posted April 11, 2004 Posted April 11, 2004 Ok, I've sat here now for 2 hours searching to see if anyone has ever tried to do this, but with no luck. Is there a way (and where) to add a code to show the Customers ID number in the Welcome email they receive when they create a new account? All help is appreciated!!! Thanks!
Guest Posted April 11, 2004 Posted April 11, 2004 I am using MS1 and tried this: in /includes/languages/english/create_account_process.php Find: define('EMAIL_WELCOME', 'We welcome you to <b>' . STORE_NAME . '</b>' . "\n\n"); and replace with: define('EMAIL_WELCOME', 'We welcome you to <b>' . STORE_NAME . '</b>' . "\" . 'You Customer ID is:' . '$customer_id' . \n\n"); It showed extra characters. Maybe someone can work with it! Hope this is some help. Ray
only2empires Posted April 12, 2004 Author Posted April 12, 2004 Thanks.....got it partially to work. If I copy what you have directly, I get this: We welcome you to XXXXXX. Your Customer ID is:$customer_id If i use this: define('EMAIL_WELCOME', 'We welcome you to <b>' . STORE_NAME . '</b>' . "\n\n" . 'Your Customer ID is: <b>' . $customer_id . '</b>' . "\n\n"); I get this with no Customer ID shown: We welcome you to XXXXXXXXX Your Customer ID is: So, I'm not sure what it needs to make it actually work. I'm using the MS2. If anyone else can pitch in....by all means!!! Got this far...just need to go a little bit further! Thanks!
Guest Posted April 12, 2004 Posted April 12, 2004 Code: define('EMAIL_WELCOME', 'We welcome you to <b>' . STORE_NAME . '</b>' . "\n . 'You Customer ID is: . $customer_id' . \n\n"); Result: We welcome you to Surf Computing . 'You Customer ID is: . 176' . Extra characters, but it's doing it!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.