I am having following code in the magento root directory to send email.
<?php
require_once('app/Mage.php'); //Path to Magento
umask(0);
Mage::app("default");
$body = "Hi there, here is some body content";
$mail = Mage::getModel('core/email');
$mail->setToName('John');
$mail->setToEmail('[email protected]');
$mail->setBody($body);
$mail->setSubject('The Subject');
$mail->setFromEmail('[email protected]');
$mail->setFromName("Your Name");
$mail->setType('text');// You can use 'html' or 'text'
try {
$mail->send();
Mage::getSingleton('core/session')->addSuccess('Your request has been sent');
}
catch (Exception $e) {
Mage::getSingleton('core/session')->addError('Unable to send.');
}
?>
How can I attach multiple csv files with this email.(At least 3 or 4).