Hello Dave,
this sounds possible but will need some custom coding.
Basically it works like explained here:
crosstec.org/support/index.php?pid=knowl...viewentclient&id=133
The imposrtant part is to fetch the value with:
ff_getSubmit('fieldname');
and then you need an if branch to check for the value and send the emails according to this value like:
$myradiovalue=ff_getSubmit('fieldname');
if($myradiovalue=="somevalue"){
$this->sendMail($from, $fromname, "my@email.com", $subject, $body); // This line actually emails the form.
}
if($myradiovalue=="someothervalue"){
$this->sendMail($from, $fromname, "mysecond@email.com", $subject, $body); // This line actually emails the form.
}
I hope this helps.
Regards,
Stefan
===============================================
Satisfied?
Consider a membership!
===============================================
Like us on
Facebook
===============================================
Follow us on
Twitter
===============================================