mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 11:06:15 +00:00
"Adding vars to the EmailComponent class"
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@3469 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
8faed8a111
commit
dbdf3c7ddc
1 changed files with 14 additions and 0 deletions
|
@ -38,6 +38,20 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
class EmailComponent extends Object {
|
class EmailComponent extends Object {
|
||||||
|
var $to = null;
|
||||||
|
var $from = null;
|
||||||
|
var $cc = null;
|
||||||
|
var $bcc = null;
|
||||||
|
var $subject = null;
|
||||||
|
var $template = 'default';
|
||||||
|
var $sendAs = 'text';
|
||||||
|
var $delivery = 'mail';
|
||||||
|
var $charset = 'ISO-8859-1';
|
||||||
|
|
||||||
|
var $_debug = false;
|
||||||
|
var $_error = false;
|
||||||
|
var $_newLine = '\n';
|
||||||
|
var $_lineLength = 75;
|
||||||
|
|
||||||
}
|
}
|
||||||
?>
|
?>
|
Loading…
Add table
Reference in a new issue