PHPMailer\PHPMailer

SMTP::mail()publicWP 1.0

Send an SMTP MAIL command. Starts a mail transaction from the email address specified in $from. Returns true if successful or false otherwise. If True the mail transaction is started and then one or more recipient commands may be called followed by a data command. Implements RFC 821: MAIL <SP> FROM:<reverse-path> <CRLF>.

Метод класса: SMTP{}

Хуков нет.

Возвращает

true|false.

Использование

$SMTP = new SMTP();
$SMTP->mail( $from );
$from(строка) (обязательный)
Source address of this message

Код SMTP::mail() WP 6.5.2

public function mail($from)
{
    $useVerp = ($this->do_verp ? ' XVERP' : '');

    return $this->sendCommand(
        'MAIL FROM',
        'MAIL FROM:<' . $from . '>' . $useVerp,
        250
    );
}