the-bugs/src/Email/EmailConfiguration.php
2019-08-21 15:54:17 -04:00

26 lines
403 B
PHP

<?php
namespace TheBugs\Email;
class EmailConfiguration
{
const AUTH_TYPE_SMTP = 1;
protected $type;
public $smtpHost = "";
public $smtpUsername = "";
public $smtpPassword = "";
public $smtpPort = 25;
public $smtpUseTLS = false;
public function __construct($type = self::AUTH_TYPE_SMTP)
{
$this->type = $type;
}
}