af/form/email/attachments
Filter the attachments of a form email before sending. $attachments should be an array of file paths similar to the attachments parameter for wp_mail.
<?php
function filter_email_attachments( $attachments, $email, $form, $fields ) {
// Add an uploaded file from a file field as an attachemnt
// The file field should have return format "FileArray"
$file = af_get_field( 'file' );
$attachments[] = get_attached_file( $file['id'] );
return $attachments;
}
add_filter( 'af/form/email/attachments/key=FORM_KEY', 'filter_email_attachments', 10, 4 );Modifiers
af/form/email/attachmentsApplies to all forms.af/form/email/attachments/key=FORM_KEYApplies to forms with specific key.af/form/email/attachments/id=FORM_IDApplies to forms with specific post ID.