Sending email in Magento with attachment

        $mail = new Zend_Mail();
        $mail->setType(Zend_Mime::MULTIPART_RELATED);
        $mail->setBodyHtml('<p>This is Magento email sample with attachment</p>');
        $mail->setFrom("sender@senderemail.com", "Sender title");
        $mail->addTo(["recepient@recepientemail.com"]);
        $mail->setSubject("Email Subject");
        $file = $mail->createAttachment(file_get_contents("/file/path/to/attachment.csv"));
        $file->type = 'text/csv';
        $file->disposition = Zend_Mime::DISPOSITION_INLINE;
        $file->encoding = Zend_Mime::ENCODING_BASE64;
        $file->filename = basename("/file/path/to/attachment.csv");
        $mail->send();

Leave a Reply