Attachment not mailed
I cannot email any attachments anymore with the 'Email' action button in ChronoForms v.5
In the 'Attachment files' field I inserted the path to the PDF file I created earlier, but this doesn't work (anymore). It worked fine in version 4. The only thing what's different is that I used the 'Email [GH]' action in version 4. In version 5 I use the standard 'Email' action which comes with ChronoForms.
What am I doing wrong?
In the 'Attachment files' field I inserted the path to the PDF file I created earlier, but this doesn't work (anymore). It worked fine in version 4. The only thing what's different is that I used the 'Email [GH]' action in version 4. In version 5 I use the standard 'Email' action which comes with ChronoForms.
What am I doing wrong?
Hi geertmartens,
In CFv5 the Attachments box takes name name of the File Upload element in your form e.g. just upload_cv - with nor brackets quotes or path.
Bob
In CFv5 the Attachments box takes name name of the File Upload element in your form e.g. just upload_cv - with nor brackets quotes or path.
Bob
I have no File Upload element in my form.
I use the TCPDF action to create a PDF file which is uploaded to the server (this works).
The name of the PDF file is determined in a Custom Code:
I use the TCPDF action to create a PDF file which is uploaded to the server (this works).
The name of the PDF file is determined in a Custom Code:
<?php
$form->data['aanvraag_mandaat']
= $form->data['pdf_file_name']
= "aanvraag_mandaat_"
.$form->data['achternaam'].
"_"
.$form->data['voornaam'].
"_"
.$datum;
?>
This topic is locked and no more replies can be posted.