Hi,
thanks for this reply.
It is really difficult to create mails which are conform with every spam protection software. Every piece of information about what can go wrong, helps to improve Visforms as well!
At the moment there is no clean way to remove that ancor but you have two "unclean" options to do it.
First. Disable the "Include Data" Option for the result mail. Use the Placeholder feature of Visforms and add the data which you want to be send with the mails manually in the editor field for "Result Mail Text". (Not so nice if you have a form with many fields or many forms...)
Second. Find the file components/com_visforms/models/visforms.php
find the
Code:
private function sendResultMail($visform)
in this file
find the following code in this function
Code:
if ($field->typefield == 'email')
{
$fieldValue = '<a href="mailto:'.$fieldValue.'">'.$fieldValue.'</a>';
}
and comment it
Code:
/*if ($field->typefield == 'email')
{
$fieldValue = '<a href="mailto:'.$fieldValue.'">'.$fieldValue.'</a>';
} */
(or simply remove it)
If this code passage causes the Visforms result mail to be flagged as spam, I think I have to make an adaptation for the next Visforms release. I will either add an option to control whether or not a link will be added to the mail or will simple remove this code.
Regards,
Aicha