Hi
I have a form which generates a response email to the submitter but I want this to include an attachment but I am not sure how to do this. I have included into the code file for the form but the email arrives without an attachment:
$From = $data['Email'];
$To = $data['Email'];
$Subject = "blah balh" ;
$Attachment = "assets/Uploads/blahblah.pdf";
$email = new Email($From, $To, $Subject,'',$Attachment);
Does anyone know? Is there any documentation that might help me?
Thakns
MM