I have a form that worked perfectly.
From now on I can not send data to email.
What has happened?
Is there an administrator who can access my administrator panel to solve the problem.
Thank you
In general do not use the Dynamic From Email address option; if the From address of your site does not match the site domain there is a much higher probability that your emails will be treated as spam. Instead use the Dynamic Reply To Email and Name options.
The Thank You message displays correctly if you use the Front End View link (though I suggest that you move the action after the Validation action). Please see this FAQ for a way to display it in an article.
<?php
$session =& JFactory::getSession();
$form_id =& $form->form_details->id;
$session->set( 'cf_submitted_'.$form_id, '1' );
?>
<?php
$session =& JFactory::getSession();
$form_id =& $form->form_details->id;
$check = $session->get( 'cf_submitted_'.$form_id, '0' );
if ( $check ) {
return false;
}
?>
I set the Static From Name and Email boxes and added Dynamic Reply To Name and Email values as described in the FAQ. This works, an email is sent.