You are here

function pay::set_mail in Pay 7

Same name and namespace in other branches
  1. 6 includes/handlers/pay.inc \pay::set_mail()

File

includes/handlers/pay.inc, line 119
The base class for the Payment API.

Class

pay
@file The base class for the Payment API.

Code

function set_mail($val = NULL) {
  if (valid_email_address($val)) {
    $this->mail = $val;
  }
}