I have a PDF form on my server that I send to a user via e-mail after they have completed the form. I originally set this up months ago following the guidance in this post - http://www.chronoengine.com/forums/posts/f5/t95602/send-attachment-with-email.html?hilit=attachment+files
Everything worked great until just recently. Now when the user submits the form everything just seems to hang. If I remove the file attachment from the e-mail event on the setup tab, then everything about the form works successfully. If I add the file attachment field name back to the e-mail it hangs again.
I have a custom code event on the setup tab that contains the following
On e-mail event under "Attachment Files" it just says MHPO
What am I missing?
Everything worked great until just recently. Now when the user submits the form everything just seems to hang. If I remove the file attachment from the e-mail event on the setup tab, then everything about the form works successfully. If I add the file attachment field name back to the e-mail it hangs again.
I have a custom code event on the setup tab that contains the following
<?php
$form->files["MHPO"]["path"] = "/home/minmatchadmin/public_html/documents/The Minister Hiring Process Overview.pdf";
?>
On e-mail event under "Attachment Files" it just says MHPO
What am I missing?