Have a small problem using Sendmail, hope someone can assist. I can get email sent without a problem, just cannot get an attachment added. Have tried putting the code in the Before Sending Email section and in the After, but same issue every time. I am running Joomla 1.5.2, PHP4.4.8, running in Legacy Mode. Code is as below.
<?php
$recipient = $_POST['email'];
$from = "Enquiries@cranebrooksoccer.asn.au";
$fromname = "CUSC";
$html_message = "Thank you for requesting an application form . Attached is the nomination form you are required to complete. Please ensure all items are completed.";
$subject = "CUSC Nomination Form";
$cc = "";
$bcc = "";
$attachment = "http://www.cranebrooksoccer.asn.au/jamie/media/fbnf.pdf";
JUtility::sendMail( $from, $fromname, $recipient, $subject, $html_message, false, $cc, $bcc, $attachment, $replyto = NULL, $replytoname = NULL);
?>
Any help would be appreciated.
Thanks
<?php
$recipient = $_POST['email'];
$from = "Enquiries@cranebrooksoccer.asn.au";
$fromname = "CUSC";
$html_message = "Thank you for requesting an application form . Attached is the nomination form you are required to complete. Please ensure all items are completed.";
$subject = "CUSC Nomination Form";
$cc = "";
$bcc = "";
$attachment = "http://www.cranebrooksoccer.asn.au/jamie/media/fbnf.pdf";
JUtility::sendMail( $from, $fromname, $recipient, $subject, $html_message, false, $cc, $bcc, $attachment, $replyto = NULL, $replytoname = NULL);
?>
Any help would be appreciated.
Thanks