clydejones:
open admin/links.contact.php
find the following line of code:
$message = zen_db_prepare_input($HTTP_POST_VARS['message']);
>
> below this line add the following
>
> ```
$html_msg['EMAIL_MESSAGE_HTML'] = $message;
Find the following code:
zen_mail($mail_query->fields['links_contact_name'], $mail_query->fields['links_contact_email'], $subject, $message, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);
>
> Change it to read as follows:
> ```
zen_mail($mail_query->fields['links_contact_name'], $mail_query->fields['links_contact_email'], $subject, $message, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, $html_msg);
Save the file and upload to your server
Ok,, this fixed most of the problem..
When I click the box to "Notify Contact:" the recieved email only shows
$EMAIL_SUBJECT
$EMAIL_MESSAGE_HTML
Everything else regarding email is working fine now excluding this.
I really do appreciate your help with this.. this mod has made life a lot eaier for me