Hi, in the "on submit" field plz use proper PHP code to get the submitted values and send it to the Email in the field you want, it should be something similar to this but this may not work so plz search the joomla forums and try to know about it :
$from = "Your site title";
$fromname = "Your name";
$subject = $_POST['subject_field_name_in_ur_form'];
$recipient = $_POST['email_field_name_in_ur_form'];
$html_message = "Your Email message body";
$body = $html_message;
mosMail($from, $fromname, $recipient, $subject, $body, true, NULL, NULL, NULL, NULL, NULL );
This topic is locked and no more replies can be posted.