function PHPMailer::TextLine in SMTP Authentication Support 5
Same name and namespace in other branches
- 7.2 smtp.phpmailer.inc \PHPMailer::TextLine()
- 7 smtp.phpmailer.inc \PHPMailer::TextLine()
Returns a formatted mail line. @access private
Return value
string
2 calls to PHPMailer::TextLine()
- PHPMailer::CreateHeader in ./
smtp.module - Assembles message header. @access private
- PHPMailer::GetBoundary in ./
smtp.module - Returns the start of a message boundary. @access private
File
- ./
smtp.module, line 1452 - 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 TextLine($value) {
return $value . $this->LE;
}