laravel-gmail icon indicating copy to clipboard operation
laravel-gmail copied to clipboard

How to Forward the mail with multiple attachments

Open PareshCitrusbug opened this issue 4 years ago • 2 comments

I want to forward the email with all attachments?

PareshCitrusbug avatar Aug 20 '19 07:08 PareshCitrusbug

any lead?

dalbirsalh avatar Jul 22 '20 11:07 dalbirsalh

Did you try using loop? I am attaching multiple files using for loop.

foreach ( $attachments as $attachment )
{
      $mail->attach( $attachment );
}

$attachment has path of the file.

Not putting whole code here just the final code, as I am storing attachments in my local storage too.

abhimanusharma avatar Mar 12 '21 11:03 abhimanusharma