Record id in email form plugin

Ok, I solved :)
{tablename___id_raw}

But now new question:
how can I use checkbox field in form to choose: send email or not.
I can't understand "Condition" in plugin email form: what I should to write there?
Can I use there placeholders?
 
you could try something like:

PHP:
return '{tablename___elementname_raw}' == 'checkboxvalue';

repalce 'tablename___elementname' with the element's full name
and
replace 'checkboxvalue' with the value that the checkbox must be for the email to be sent
 
Back
Top