Hello
i'm trying to make some code for the submit button but it won't work, can anyone help me?when i click the button, i need, validate_and_submit (enter the info in the database), then send a custom email to the visitor who filled the form, then ff_nextpag to show a thanks message
my code is:
function ff_download_button_action(element, action)
{
ff_validate_submit();
$this->execPieceByName('ff_InitLib');
$recipients = ff_getSubmit('Email');
$fromname = 'Het Anyu Team';
$subject = information from Anyu';
$from= '
This e-mail address is being protected from spambots. You need JavaScript enabled to view it.
';
$body = 'this is the body<br><br>of the email;
$this->sendMail($recipients , 'your name', $from, $subject, $body);
ff_nextpage();
}
thanks !