MagePal\GmailSmtpApp\Model\Transport::sendMessage PHP Method

sendMessage() public method

Send a mail using this transport
public sendMessage ( ) : void
return void
    public function sendMessage()
    {
        try {
            parent::send($this->_message);
        } catch (\Exception $e) {
            throw new \Magento\Framework\Exception\MailException(new \Magento\Framework\Phrase($e->getMessage()), $e);
        }
    }