Diff
Index: __construct.md
--- __construct.md (nonexistent)
+++ __construct.md (revision 4)
@@ -0,0 +1,54 @@
+
+# EmailNotification::__construct
+
+### Usage
+
+> EmailNotification::__construct(int $id, [ bool $is_active = true ], [ string $controller = '' ], [ string $alias = '' ], [ string $sender = '' ], [ string $recipient = '' ], [ string $reply_to = '' ], [ string $cc = '' ], [ string $bcc = '' ], [ string $subject = '' ], [ string $text_contents = '' ], [ string $html_contents = '' ], [ string $condition_vars = '' ])
+
+### Description
+
+> Constructor
+
+### Parameters
+
+Parameter | Required | Type | Description
+------------- |------------- |------------- |-------------
+id | Yes | int |
+is_active | No | bool |
+controller | No | string |
+alias | No | string |
+sender | No | string |
+recipient | No | string |
+reply_to | No | string |
+cc | No | string |
+bcc | No | string |
+subject | No | string |
+text_contents | No | string |
+html_contents | No | string |
+condition_vars | No | string |
+
+### Return
+>
+### See Also
+
+* __get()
+* __set()
+* all()
+* count()
+* delete()
+* deleteMany()
+* getAttachments()
+* getChildren()
+* insert()
+* insertFromForm()
+* insertOrUpdate()
+* purge()
+* save()
+* toArray()
+* toFormattedArray()
+* update()
+* where()
+* whereFirst()
+* whereId()
+
+
Full Code
EmailNotification::__construct
Usage
EmailNotification::__construct(int $id, [ bool $is_active = true ], [ string $controller = '' ], [ string $alias = '' ], [ string $sender = '' ], [ string $recipient = '' ], [ string $reply_to = '' ], [ string $cc = '' ], [ string $bcc = '' ], [ string $subject = '' ], [ string $text_contents = '' ], [ string $html_contents = '' ], [ string $condition_vars = '' ])
Description
Constructor
Parameters
| Parameter |
Required |
Type |
Description |
| id |
Yes |
int |
|
| is_active |
No |
bool |
|
| controller |
No |
string |
|
| alias |
No |
string |
|
| sender |
No |
string |
|
| recipient |
No |
string |
|
| reply_to |
No |
string |
|
| cc |
No |
string |
|
| bcc |
No |
string |
|
| subject |
No |
string |
|
| text_contents |
No |
string |
|
| html_contents |
No |
string |
|
| condition_vars |
No |
string |
|
Return
See Also