You are here

function PHPMailer::IsQmail in SMTP Authentication Support 5

Same name and namespace in other branches
  1. 7.2 smtp.phpmailer.inc \PHPMailer::IsQmail()
  2. 7 smtp.phpmailer.inc \PHPMailer::IsQmail()

Sets Mailer to send message using the qmail MTA.

Return value

void

File

./smtp.module, line 719
Enables drupal to send email directly to an SMTP server using authentication. Uses the PHPMailer class by Brent R. Matzelle.

Class

PHPMailer
PHPMailer - PHP email transport class @package PHPMailer @author Brent R. Matzelle @copyright 2001 - 2003 Brent R. Matzelle

Code

function IsQmail() {
  $this->Sendmail = "/var/qmail/bin/sendmail";
  $this->Mailer = "sendmail";
}