Forums

Email only when Attachments

tshirley 27 Oct, 2015
Hello,

I would like to send an email from a form only if the user attaches a file to the form.

Is there any way I can detect in an Event Switcher, if an attachment has been uploaded?

Cheers

Tim
GreyHead 28 Oct, 2015
Hi Tim,

Check the entries in $form->files - probably just the count is enough
<?php
if ( count($form->files > 0 ) {
  echo 'file_uploaded';
}
?>

Bob
This topic is locked and no more replies can be posted.