EricMakesStuff\ServerMonitor\Notifications\Senders\Mail::send PHP Method

send() public method

public send ( )
    public function send()
    {
        $this->mailer->raw($this->message, function (Message $message) {
            $message->subject($this->subject)->from($this->config['from'])->to($this->config['to']);
        });
    }