JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "GmailApiMailTransport.php"

Full Path: /home/markqprx/iniasli.pro/Mail/GmailApiMailTransport.php
File size: 409 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Common\Settings\Mail;

use Symfony\Component\Mailer\SentMessage;
use Symfony\Component\Mailer\Transport\AbstractTransport;

class GmailApiMailTransport extends AbstractTransport
{
    public function doSend(SentMessage $message): void
    {
        (new GmailClient())->sendEmail($message->toString());
    }

    public function __toString(): string
    {
        return 'gmailApi';
    }
}