getMailer() public method

Getter for the mailer object
public getMailer ( ) : PHPMailer
return PHPMailer
Beispiel #1
0
 public function testMailerObject()
 {
     $mail = new Mail();
     $this->assertInstanceOf('PHPMailer', $mail->getMailer());
 }