Newscoop\Services\EmailService::sendUserEmail PHP Method

sendUserEmail() public method

Send user message from other user
public sendUserEmail ( string $from, string $to, string $subject, string $message ) : void
$from string
$to string
$subject string
$message string
return void
    public function sendUserEmail($from, $to, $subject, $message)
    {
        $this->send($subject, $message, $to, $from);
    }