Well, yes, the email program should take all the links and make them clickable (blue in my email program).
The other links in the welcome email message ("please email us at [email protected]", the link to the store under the signature, and the link to the store email in the 2nd to last para all DO come through as clickable. It's only the one I created that doesn't, so that's why I'm assuming I have some incorrect syntax.
I guess I should have included a bit more of the code so you can see the links that ARE working, in addition to the one I create that does not.
Code:
define('EMAIL_TEXT', 'You are now registered with the store. Along with purchasing products and services you can also:' . "\n\n<ul>" . '<li>-View your Order History.' . "\n\n" . '<li>-Save items in your Shopping Cart until you remove them or check out.' . "\n\n" . '<li>-Keep more than one address on file in case you want to send a gift to someone.' . "\n\n" . '<li>-Review products to help others make the best decisions about products and services' . "\n\n</ul>" . 'Also, if you are not already on my email list for weekly tips, recipes, support and inspiration, please <a href="http://www.example.com">sign up!</a>' . "\n\n");
define('EMAIL_CONTACT', 'For any support with the store, please email us at: <a href="mailto:' . STORE_OWNER_EMAIL_ADDRESS . '">'. STORE_OWNER_EMAIL_ADDRESS ." </a>\n\n");
define('EMAIL_GV_CLOSURE', "\n" . 'Warmly,' . "\n\n" . STORE_OWNER . "\nFamily Wellness Coach\n\n". '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'.HTTP_SERVER . DIR_WS_CATALOG ."</a>\n\n");
// email disclaimer - this disclaimer is separate from all other email disclaimers
define('EMAIL_DISCLAIMER_NEW_CUSTOMER', 'This email address was given to us by you or by one of our customers. If you did not signup for an account, or feel that you have received this email in error, please send an email to %s ');