Sending Mail Via A Specific Mailer By default, Laravel will use the mailer configured as the default mailer in your mail configuration file. However, you may use the mailer method to send a message using a specific mailer configuration: Mail::mailer('postmark') ->to($request->user()) ->send(new OrderShipped($order));