Vinai / customer-activation

Magento extension which makes it impossible for a customer to log in until the account has been activated by the administrator.
120 stars 59 forks source link

Send email with attachement #107

Open ivantnt opened 7 years ago

ivantnt commented 7 years ago

hello i'm using your very usefull extension. I would like to send attachement to admin when a new customer make a registration I'm trying to modify the function _sendNotificationEmail by adding a code like this //sending file as attachment $attachmentFilePath = Mage::getBaseDir('media'). DS . 'contacts' . DS . $fileName; if(file_exists($attachmentFilePath)){ $fileContents = file_get_contents($attachmentFilePath); $attachment = $mailTemplate->getMail()->createAttachment($fileContents); $attachment->filename = $fileName;

The email is sent but the attachement always is an empty file . Can you give me some suggestion? Thank you very much for your help