function sendEMAIL($from, $to, $subject, $body, $ashtml=false) { $mailer = JFactory::getMailer(); $mailer->setSender($from); $mailer->addRecipient($to); $mailer->setSubject($subject); $mailer->setBody($body); if($ashtml) { $mailer->isHTML(); } $mailer->send(); }