Currently, the welcome email (after creating account) ONLY contains First name.
Very first line, it reads "Dear XXX"
Is there a way to add Last name?
thanks in advance.
Zencart V1.3.8a
Printable View
Currently, the welcome email (after creating account) ONLY contains First name.
Very first line, it reads "Dear XXX"
Is there a way to add Last name?
thanks in advance.
Zencart V1.3.8a
anybody?
All my emails are addressed to the persons surname already .... I don't know if this will help you but look in includes/languages/english/create_account.php not far down you will should a block of code like this.
This code was taken from my file and all I can guess is the %s refers to the surname, maybe you have something else there.Code:// greeting salutation
define('EMAIL_SUBJECT', 'Welcome to ' . STORE_NAME);
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");
Hope this helps :smile: