When submitting form tests, all of the information is being saved to the database and the uploaded files are being saved on the server.
An email is generated by the submission, containing all the information except for the submitted file. The file name is neither included in the body of the message, nor is it attached to the message.
Per the instructions at http://www.chronoengine.com/faqs/70-cfv5/5224-how-can-i-attach-files-from-my-server-to-an-email-in-cfv5.html:
The db field name is Upload ...
custom action / content =
<?php
$form->files["Upload"]["path"] = "/home/acase/acase.org/forum/images/";
// you can change the "field_name" string to something else
?>
email action / email template / contains <td>{Upload}</td>
email action / Attachment files input / Upload
The debugging results are attached as a PDF.
Not sure what's missing
david
An email is generated by the submission, containing all the information except for the submitted file. The file name is neither included in the body of the message, nor is it attached to the message.
Per the instructions at http://www.chronoengine.com/faqs/70-cfv5/5224-how-can-i-attach-files-from-my-server-to-an-email-in-cfv5.html:
The db field name is Upload ...
custom action / content =
<?php
$form->files["Upload"]["path"] = "/home/acase/acase.org/forum/images/";
// you can change the "field_name" string to something else
?>
email action / email template / contains <td>{Upload}</td>
email action / Attachment files input / Upload
The debugging results are attached as a PDF.
Not sure what's missing
david