“Отправить несколько вложений в Mail Laravel 8” Ответ

Прикрепите несколько файлов в Laravel Pailable

public function build()
{
    $email = $this->view('emails.employment_mailview')->subject('Employment Application');

    // $attachments is an array with file paths of attachments
    foreach($attachments as $filePath){
        $email->attach($filePath);
    }
    return $email;
}
Graceful Goose

Отправить несколько почты в Ларавеле

$emails = ['myoneemail@esomething.com', 'myother@esomething.com','myother2@esomething.com'];

Mail::send('emails.welcome', [], function($message) use ($emails)
{    
    $message->to($emails)->subject('This is test e-mail');    
});
var_dump( Mail:: failures());
exit;
Muddy Macaw

Laravel Mail Отправлена ​​нескольким получателям

$arrayEmails = ['someone@mail.com','stranger@mail.com'];
$emailSubject = 'My Subject';
$emailBody = 'Hello, this is my message content.';

Mail::send('emails.normal',
	['msg' => $emailBody],
	function($message) use ($arrayEmails, $emailSubject) {
		$message->to($arrayEmails)
        ->subject($emailSubject);
	}
);
Watcher O_O

Отправить несколько вложений в Mail Laravel 8

public function build()
{
        $this->subject('Mail from ItSolutionStuff.com')
                    ->view('emails.myTestMail');
  
        foreach ($this->details['files'] as $file){
            $this->attach($file);
        }
  
        return $this;
}
Hardik Savani

Ответы похожие на “Отправить несколько вложений в Mail Laravel 8”

Вопросы похожие на “Отправить несколько вложений в Mail Laravel 8”

Больше похожих ответов на “Отправить несколько вложений в Mail Laravel 8” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования