Changeset 1512732
- Timestamp:
- 10/11/2016 01:55:27 PM (9 years ago)
- Location:
- bluecube-email-templates
- Files:
-
- 2 edited
-
tags/1.0/readme.txt (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bluecube-email-templates/tags/1.0/readme.txt
r1341255 r1512732 1 === Blue Cube Email Templates ===1 === Blue Cube Email Templates === 2 2 Contributors: thebluecube 3 3 Donate link: … … 23 23 This plugin creates a global instance of the BlueCube\Email_Template class which is called $bluecube_email_template. Once you have created a template, you can use the sendEmail() method of the instance to send out your emails. 24 24 25 $email_args = array(25 `$email_args = array( 26 26 'template_title' => 'your-template-title', 27 27 'to' => $email, 28 28 'variables' => array('username' => 'JohnDoe', 'user_email' => 'test@test.com'), 29 29 ); 30 $bluecube_email_template->sendEmail($email_args); 30 $bluecube_email_template->sendEmail($email_args);` 31 31 32 32 33 -
bluecube-email-templates/trunk/readme.txt
r1341255 r1512732 1 === Blue Cube Email Templates ===1 === Blue Cube Email Templates === 2 2 Contributors: thebluecube 3 3 Donate link: … … 23 23 This plugin creates a global instance of the BlueCube\Email_Template class which is called $bluecube_email_template. Once you have created a template, you can use the sendEmail() method of the instance to send out your emails. 24 24 25 $email_args = array(25 `$email_args = array( 26 26 'template_title' => 'your-template-title', 27 27 'to' => $email, 28 28 'variables' => array('username' => 'JohnDoe', 'user_email' => 'test@test.com'), 29 29 ); 30 $bluecube_email_template->sendEmail($email_args); 30 $bluecube_email_template->sendEmail($email_args);` 31 31 32 32 33
Note: See TracChangeset
for help on using the changeset viewer.