Hello,
I want to create an auto reponse e-mail to the submitter with a simple Thank you message and the filled in data from the form. I read the topics about this and stumbled upon several simmilar problems. There was a link from GreyHead to a topic with the right code for me but the link didn't work. I work with Joomla 1.5 and apparently I needed a different piece of PHP at the end to get it work ...but nada.. This is my code:
Yes, this will only cover the thank you message and not display the results of the form, but I thought I would start easy on this.... Does any-one have a link to the right topic or code?
I want to create an auto reponse e-mail to the submitter with a simple Thank you message and the filled in data from the form. I read the topics about this and stumbled upon several simmilar problems. There was a link from GreyHead to a topic with the right code for me but the link didn't work. I work with Joomla 1.5 and apparently I needed a different piece of PHP at the end to get it work ...but nada.. This is my code:
<?php
$recipient = $_POST[Email];
$html_message = "<p>Bedankt voor het invullen van ons contactformulier.
Uw vraag wordt zo spoedig mogelijk behandeld</p>";
$subject = $subject";
JUtility::sendMail( $from, $fromname, $recipient,
$subject, $html_message, true );
?>
Yes, this will only cover the thank you message and not display the results of the form, but I thought I would start easy on this.... Does any-one have a link to the right topic or code?