Laravel send multiple attachments to Mailables

David Carr

1 min read - 29th Aug, 2018

Rather than returning the direct mail call in the build method of a mailable you can assign it to a variable then add multiple attach calls before returning.

Here’s an example:

public function build()
{
    //setup the mail
    $mail = $this->subject('The subject', ['content' => $content])->markdown('mail.sendreply');

    //loop through attachments and attach to $mail
    $att = Attachment::where('sendEmail', 'Yes')->get();
    foreach($att as $file) {
        //attach the file
        $mail->attach($file->filePath);
    }

    //return and execute sending the mailable
    return $mail;
}

 

0 comments
Add a comment

Copyright © 2024 DC Blog - All rights reserved.