hahalo/php-mailer

smtp mailer sender via http proxy

v0.01 2020-10-31 19:17 UTC

This package is auto-updated.

Last update: 2024-04-29 04:40:25 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License Build Status Coverage Status

send email with smtp (support http proxy)

Install

composer require Hahalo/php-mailer

Usage

<?php

$transport = new \Hahalo\Mailer\SMTPTransport(
    [
        'host' => 'smtp.gmail.com',
        'port' => 465,
        'encryption' => 'ssl',
        'username' => 'your username',
        'password' => 'your password',
        
        'httpProxy' => 'http://proxy.com:8080' //user http proxy
    ]
);

$mailer = new \Hahalo\Mailer\Mailer($transport);
$mailer->setFrom('from@example.com')
    ->setTo('to@example.com')
    ->setSubject('subject')
    ->setText('email from php mailer')
    ->send();