Hello. I'm having an issue sending another "thank you for" e-mail message after the user submits my form. I've tried using some e-mail code that I use in other portions of my website to no avail. I then tried the simple, sample code I've seen posted throughout this forum which isn't working either.
I receive no "thank you" e-mail or error message of any kind. I'm using 2.5 J1.5 RC2 on Joomla! 1.5.1. Is there a known issue with this feature that I may be unaware of? Here's the last example I tried:
Best regards,
Jerret
Edited to add code tags.<br><br>Post edited by: GreyHead, at: 2008/03/21 21:31
I receive no "thank you" e-mail or error message of any kind. I'm using 2.5 J1.5 RC2 on Joomla! 1.5.1. Is there a known issue with this feature that I may be unaware of? Here's the last example I tried:
<?php
$recipient = $_POST['email'];
$html_message = '<html>
<head>
<STYLE type="text/css">
</STYLE>
</head>
<body>
<div align="center"><br> Hello test</div>
</body>
</html>';
mosMail('no-reply@xyz.com', some name',$recipient, 'Thank you for volunteering', $html_message, true );
?>
Thoughts?
Best regards,
Jerret
Edited to add code tags.<br><br>Post edited by: GreyHead, at: 2008/03/21 21:31