You are here

function PHPMailer::AddAttachment in SMTP Authentication Support 5

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

Adds an attachment from a path on the filesystem. Returns false if the file could not be found or accessed.

Parameters

string $path Path to the attachment.:

string $name Overrides the attachment name.:

string $encoding File encoding (see $Encoding).:

string $type File extension (MIME) type.:

Return value

bool

File

./smtp.module, line 1470
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 AddAttachment($path, $name = "", $encoding = "base64", $type = "application/octet-stream") {
  if (!@is_file($path)) {
    $this
      ->SetError($this
      ->Lang("file_access") . $path);
    return false;
  }
  $filename = basename($path);
  if ($name == "") {
    $name = $filename;
  }
  $cur = count($this->attachment);
  $this->attachment[$cur][0] = $path;
  $this->attachment[$cur][1] = $filename;
  $this->attachment[$cur][2] = $name;
  $this->attachment[$cur][3] = $encoding;
  $this->attachment[$cur][4] = $type;
  $this->attachment[$cur][5] = false;

  // isStringAttachment
  $this->attachment[$cur][6] = "attachment";
  $this->attachment[$cur][7] = 0;
  return true;
}