class SMTP { protected $server; protected $port; public $err; protected $timeout = 30; protected $to = array(); protected $from; protected $subject; protected $body; protected $username_64 = ""; protected $password_64 = ""; protected $codes = Array( "220" => true, "250" => true, "334" => true, "235" => true, "535" => false, "354" => true, "530" => true ); function SMTP($server, $port, $timeout =..