Is there a link to a page explaining how to send a html formated e-mail to a person once they have submitted a form?
Forums
HTML e-mails
Hi abasel,
If you *only* want to send a thank-you email to the submitter then you can use the email template for this.
If you want to send a results email to an admin, and a different email to the submitter then you can do this from the OnSubmit after email field. Here's an example:
Bob
If you *only* want to send a thank-you email to the submitter then you can use the email template for this.
If you want to send a results email to an admin, and a different email to the submitter then you can do this from the OnSubmit after email field. Here's an example:
<?php
$recipient = $_POST['email'];
$subject = "Our Website- thanks";
$html_message = "
<p>Thank you for submitting a feedback form.</p>
<p>. . . some text . . .</p>
<p>Best wishes,<br />The Our Website Team</p>";
mosMail($from, $fromname, $recipient, $subject, $html_message, true );
echo $html_message;
This version actually both sends an email and show the same message on the Thank You page.
Bob
Is this the full code?
Didn't send an email for me.
Didn't send an email for me.
Hi sustainmadison,
That's very old Joomla 1.0 code. Please check the email tutorial.
Bob
That's very old Joomla 1.0 code. Please check the email tutorial.
Bob
Hi..
I also want to setup an Auto Responder .
do lot nu, do lot cao cap, do boi nam, do so sinh tron goi, do so sinh cao cap cho be, quan ao so sinh cao cap, chan vay cong so, ao so mi cong so, ban buon quan ao, do lot[/url]
Bob, where is the email tutorial ? :?
I also want to setup an Auto Responder .
do lot nu, do lot cao cap, do boi nam, do so sinh tron goi, do so sinh cao cap cho be, quan ao so sinh cao cap, chan vay cong so, ao so mi cong so, ban buon quan ao, do lot[/url]
Bob, where is the email tutorial ? :?
This topic is locked and no more replies can be posted.