If you added a script to the process.php file, what are you using to send the email? phpmail?
If you have to send as an attachment and not as a link to the uploaded file then PHPMailer would be easier.
https://stackoverflow.com/questions/1230...h-php-mail
To send using FT's bulit-in email function you can send the submitter an email confirmation with a link to the file.
Under Edit Email Template, Content use something like this:
Uploaded Document: <a href=http://www.yoursite/formtools/upload/{$FILENAME_document1}>{$FILENAME_document1}</a>
'document1' would be what you named the field for the upload.
Or use: https://docs.formtools.org/modules/swift_mailer/
If you have to send as an attachment and not as a link to the uploaded file then PHPMailer would be easier.
https://stackoverflow.com/questions/1230...h-php-mail
To send using FT's bulit-in email function you can send the submitter an email confirmation with a link to the file.
Under Edit Email Template, Content use something like this:
Uploaded Document: <a href=http://www.yoursite/formtools/upload/{$FILENAME_document1}>{$FILENAME_document1}</a>
'document1' would be what you named the field for the upload.
Or use: https://docs.formtools.org/modules/swift_mailer/