=== eTemplates === Contributors: chriscarvache Tags: email, mail, Mailer, wp_mail, developer, template, script, style, awesome, templates, eTemplates, code, admin, include, injection, insert,script, style, custom post types Requires at least: 3.2 Tested up to: 3.4 Stable tag: 0.2.1 Create simple, yet powerful dynamic email templates that are commonly used in application style websites. For developers / advanced users ONLY. == Description == eTemplates simplifies the creation and delivery of dynamic emails. The plugin is best used in conjunction with custom coded application style websites that send out emails populated with dynamic data to users at specific points in the application logic. Some examples of usage could be: * Shopping carts * Social media sites * Project management systems * Your custom application here! Use eTemplates to create consistently branded emails with ease! == Installation == Pretty easy stuff! 1. Upload the `etemplates` folder to the `/wp-content/plugins/` directory 1. Activate the plugin through the 'Plugins' menu in WordPress 1. Enjoy! == Frequently Asked Questions == = How do I send out an email using eTemplates? = In your code use the following snippet and replace the following variables with appropriate values: ` 'value1', 'magictag2' => 'value2', 'magictag3' => 'value3'); nlws_et($templateID, $to, $emailtags); ?>` = What are magic tags? = Magic tags are used in an eTemplate to populate the email with dynamic data. They are used in the following format: `{@MAGICTAG}` When magic tags are found in an email template, they are replaced with the values that are defined in the array. = Okay. So give me an example! = This is where everything comes together an makes sense. Sample HTML code would look something like this: `
Hello {@USERNAME}! You are currently a(an) {@USERROLE} of the site.