Categories: How To

How to Send Email with Attachment in Magento Without Saving File to Webserver

While working with Magento, you may need to send numerous Emails from registration confirmation to order delivery, refund requests and many more. Many times you may require to send Email with attachments without storing them to server as they are no longer required once sent. For example, if you are accepting recruitment applications from the candidates, you don’t require to save their resumes on the web server rather just want to send them directly to Email attachments. This require needs custom code in Magento.

Today I’m going to share custom code to Send Email with Attachment in Magento Without Saving File to Webserver:

This whole process works as getting the files and storing them in a temporary folder and send it as attachments directly to Email without saving as the temporary folder auto removes the files after sometimes.

Note that this code only works with Zend mail.

<?php $html="Email body"; $mail = new Zend_Mail('utf-8'); $mail->setBodyText($html);
$mail->setSubject('EmailSubject');
$mail->setFrom('test@gmail.com', 'MageComp'); // test@gmail.com is the sender Email ID, MageComp is name of the sender
$mail->addTo('test123@gmail.com','Magecomp'); // test123@gmail.com is the recipient Email ID, MageComp is name of recipient
$tmpFilePath = $_FILES['documentfile']['tmp_name'];   // uploaded pdf file and ‘documentfile’ is the name of file type field name
if ($tmpFilePath != ""){
   $fname = $_FILES['documentfile']['name'];
   $ftempname = $_FILES['documentfile']['tmp_name'];                   
   $_file = $mail->createAttachment(file_get_contents($ftempname));  
   $_file->type = 'application/pdf'; 
   $_file->filename = $fname;
}
try {
  $mail->send();
}
catch(Exception $e)
{
  Mage::log($e->getMessage());
}

This simple code saves your time to immediately send Emails without storing attachments in web servers and helps you get rid of saving non-required and unused files to make your server bulky. Hope this code has helped you to fulfill your requirements and still if you need any kind of help, I always welcome questions and feedback through comments.

Click to rate this post!
[Total: 6 Average: 4.2]
Dhiren Vasoya

Dhiren Vasoya is a Director and Co-founder at MageComp, Passionate ?️ Certified Magento Developer?‍?. He has more than 9 years of experience in Magento Development and completed 850+ projects to solve the most important E-commerce challenges. He is fond❤️ of coding and if he is not busy developing then you can find him at the cricket ground, hitting boundaries.?

Recent Posts

How to Integrate and Use MongoDB with Laravel?

MongoDB is a popular NoSQL database that offers flexibility and scalability when handling modern web…

1 day ago

NodeJS | Callback Function

In NodeJS, callbacks empower developers to execute asynchronous operations like reading files, handling requests, and…

2 days ago

How to Show SKU in Order Summary in Magento 2?

Hello Magento Friends, In today’s blog, we will learn How to Show SKU in Order…

4 days ago

Best Colors to Use for CTA Buttons

The "Buy Now" and "Add to Cart" buttons serve as the primary call-to-action (CTA) elements…

6 days ago

Magento 2: How to Save Custom Field Value to quote_address for Multi-Shipping Orders

Hello Magento Friends, In Magento 2, the checkout process allows customers to choose multiple shipping…

7 days ago

Best Beginners Guide to Shopify Balance Account

If you are a Shopify admin, using a Shopify Balance Account for your business revenue…

7 days ago