コード例 #1
0
ファイル: Recipient.php プロジェクト: mymizan/phreeze
 /**
  * Returns true if $this->Email appears to be a valid email
  * @return bool
  */
 function IsValidEmail()
 {
     return Recipient::IsEmailInValidFormat($this->Email);
 }
コード例 #2
0
ファイル: Mailer.php プロジェクト: hpazevedo/Teste-BDR
 /**
  * returns true if the provided email appears to be valid
  * @return bool
  */
 function IsValid($email)
 {
     return Recipient::IsEmailInValidFormat($email);
 }