Public Member Functions | |
__construct ($data, $name, $contentType, iEncoding $encoding) | |
Constructor. | |
Public Attributes | |
$data | |
$name | |
$contentType | |
$encoding |
Definition at line 870 of file Rmail.php.
attachment::__construct | ( | $ | data, | |
$ | name, | |||
$ | contentType, | |||
iEncoding $ | encoding | |||
) |
Constructor.
string | $data File data | |
string | $name Name of attachment (filename) | |
string | $contentType Content type of attachment | |
object | $encoding Encoding type to use |
Definition at line 904 of file Rmail.php.
References $contentType, $data, and $name.
00905 { 00906 $this->data = $data; 00907 $this->name = $name; 00908 $this->contentType = $contentType; 00909 $this->encoding = $encoding; 00910 }
attachment::$contentType |
Definition at line 888 of file Rmail.php.
Referenced by stringAttachment::__construct(), fileAttachment::__construct(), and __construct().
attachment::$data |
Definition at line 876 of file Rmail.php.
Referenced by stringAttachment::__construct(), and __construct().
attachment::$encoding |
Definition at line 894 of file Rmail.php.
Referenced by stringAttachment::__construct(), and fileAttachment::__construct().
attachment::$name |
Definition at line 882 of file Rmail.php.
Referenced by stringAttachment::__construct(), and __construct().