Send an email to lapsed patrons

This commit is contained in:
Alex Cabal 2022-07-02 16:40:50 -05:00
parent 0875e697b4
commit 3fa9592e6d
17 changed files with 185 additions and 42 deletions

View file

@ -4,27 +4,12 @@ use Safe\DateTime;
class User extends PropertiesBase{
public $UserId;
public $FirstName;
public $LastName;
protected $Name = null;
public $Name;
public $Email;
public $Created;
public $Uuid;
// *******
// GETTERS
// *******
protected function GetName(): string{
if($this->Name === null){
$this->Name = $this->FirstName . ' ' . $this->LastName;
}
return $this->Name;
}
// *******
// METHODS
// *******