How to send attachments using mailsender serivce??. Currently I am using the code below which sends plain/html messages only and I want the attachment to be included with this, can anyone please help in achieving this. Thanks in advance, any guidance would be helpful
$email->set(array(
'to' => 'someone@example.com',
'name' => subject,
'body' => $msgBody,
'isHtml' => true
));
$this->getMailSender()->send($email);
$email->set(array(
'to' => 'someone@example.com',
'name' => subject,
'body' => $msgBody,
'isHtml' => true
));
$this->getMailSender()->send($email);
Comment