Announcement

Collapse
No announcement yet.

how to send attachments using mailsender service in php code

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • how to send attachments using mailsender service in php code

    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);

  • #2
    Look into application/Espo/Core/Mail/Sender.php
    It should be array of attachment entities.

    Comment

    Working...
    X