Quote Originally Posted by traytray View Post
How would I change the email link STORE_OWNER etc., which reads my first name at my website, to simply [email protected]?

define('EMAIL_CONTACT', 'For help with any of our online services, please email: <a href="mailto:' . STORE_OWNER_EMAIL_ADDRESS . '">'. STORE_OWNER_EMAIL_ADDRESS ." </a>\n\nStop by and see what\'s new at http://designerperfumesnob.com");
If you don't want the link to be clickable, just remove the clickable link altogether. Your emails will be less friendly that way, but it will give you exactly what you asked for:

define('EMAIL_CONTACT', 'For help with any of our online services, please email [email protected]. \n\nStop by and see what\'s new at http://designerperfumesnob.com");

Quote Originally Posted by traytray View Post
Another other email change I would like to make:

The greetings are currently Dear Ms. or Mr. and I would like it to be Dear First Name Last Name,
How would I replace the Ms. and Mr to reflect names?

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");
Turn off gender in Admin->Configuration->Customer Details.