You are here

function PHPMailer::AddCC in SMTP Authentication Support 5

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

Adds a "Cc" address. Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.

Parameters

string $address:

string $name:

Return value

void

File

./smtp.module, line 749
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 AddCC($address, $name = "") {
  $cur = count($this->cc);
  $this->cc[$cur][0] = trim($address);
  $this->cc[$cur][1] = $name;
}