You are here

function PHPMailer::AddReplyTo in SMTP Authentication Support 5

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

Adds a "Reply-to" address.

Parameters

string $address:

string $name:

Return value

void

File

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