Skip to content

Instantly share code, notes, and snippets.

View changs1986's full-sized avatar

changs1986

  • 21:40 (UTC +08:00)
View GitHub Profile
@changs1986
changs1986 / gmail.php
Created October 25, 2018 05:18 — forked from tonivj5/gmail.php
Send email using a PHP Generator and cURL
class Gmail {
private $mail;
private $email;
private $pass;
public function __construct($email, $pass){
$this->email = $email;
$this->pass = $pass;
}