Beispiel #1
0
 /**
  * Will set the 'From:', e-mail HEADER;
  *
  * This method will set the necessary 'From: ' header on the MIME email format, thus allowing e-mail origination from this
  * website to be properly identified on the .net. In theory, this SHOULD actually be a REAL email, because people tend to
  * push the 'Reply' button quite often, even if they wanna swear you for filling up their Inboxes;
  *
  * @param S $objFromMAIL The mail to set the From: key to;
  */
 public function setFrom(S $objFromMAIL)
 {
     self::$objFromHeader = _S(self::MAIL_HEADER_FROM . _N_)->doToken('%s', $objFromMAIL);
 }