send mail with attached file
in magento there is no available methods for attach file. once we do it in magento by adding a following code in mage/core/model/email/template.php at the end of file. public function addAttachment(Zend_Pdf $pdf){ $file = $pdf->render(); $attachment = $this->getMail()->createAttachment($file); $attachment->type = 'application/pdf'; $attachment->filename = 'yourfile.pdf'; } but i prefer to use Zend_Mail to send mail with attached file. for this u need to do following. try{ $mail = new Zend_Mail(); $mail->setFrom("fromemail","fromname"); $mail->addTo("toemail","toname"); ...