Jan 14, 2010
Send email from components
While working in Joomla CMS, many times need arises to send mail from the components.
Joomla has a class defined for doing this.
I am listing here the method for sending mail.
<?php
$admin_email = ‘test@test.com’;
$subject = ‘Mail Testing’;
$Body = “Sending mail from component”;
$sender_email = “sender@sender.com”;
$sender_name = “Sender Name”;
$mail = &JFactory::getMailer();...
read more
