Hi!
I have scoured the tutorials and forum, yet cannot figure out how to fix this: my emails address customer by first name only.
I disabled the Mr/Ms function because about 40% of my customers are doctors. And I do not wish to send informal emails (first name only) to customers who I have not yet earned such familiarity with.
I was able to customize my Welcome email by editing this file:
includes/languages/english/create_account.php
The following code appears to control the issue:
I cannot figure out where EMAIL_WELCOME gets defined! I used the Developer Tool search, found references to it but cannot figure out where I can tell it first_name last_name.// greeting salutation
define('EMAIL_SUBJECT', 'Welcome to ' . STORE_OWNER);
define('EMAIL_GREET_MR', 'Dear Mr. %s,' . "\n\n");
define('EMAIL_GREET_MS', 'Dear Ms. %s,' . "\n\n");
define('EMAIL_GREET_NONE', 'Dear %s' . "\n\n");
// First line of the greeting
define('EMAIL_WELCOME', 'We wish to welcome you to the <strong>MedHarvest</strong> family of online stores.');
Any help would be very appreciated!





