Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 276 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 276 Bytes

PHPMAILER Example

Config in mail.config.php.

<?php
$CONFIG = array(
  'mail' => array(
    "host" => "",
    "port" => "587",
    "email" => "",
    "password" => "",
    "isSMTP" => true,
    "debug" => true
  )
);

test

$ php -S localhost:8000