}); Mail::send( array('emails.view.html', 'emails.view.text'), $data, function($message) { $message->to('
[email protected]', 'Colin Viebrock') ->subject('Welcome!'); }); Mail::send( array('emails.view.html', 'emails.view.text'), $data, function($message) { $message->to('
[email protected]', 'Colin Viebrock') ->subject('Welcome!') ->cc('
[email protected]') ->bcc('
[email protected]'); }); Mail::send( array('emails.view.html', 'emails.view.text'), $data, function($message) { $message->to('
[email protected]', 'Colin Viebrock') ->subject('Welcome!') ->cc('
[email protected]') ->bcc('
[email protected]'); $message->attach($pathToFile); }); Mail::send( array('emails.view.html', 'emails.view.text'), $data, function($message) { $message->to('
[email protected]', 'Colin Viebrock') ->subject('Welcome!') ->cc('
[email protected]') ->bcc('
[email protected]'); $message->attach($pathToFile, array('as' => $display, 'mime' => $mime)); });