Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagephp
title/plugins/my_plugin/controllers/admin_main.php
linenumberstrue
<?php
class AdminMain extends MyPluginController {

    public function index() {

		...
		
		$this->uses("Emails");

		$tags = array('first_name' => "Tommy", 'last_name' => "Callahan");
		$options = array('to_client_id' => 1020);
		$this->Emails->send("MyPlugin.custom_action", $this->company_id, "en_us", "tommy.callahan@yourdomain.com", $tags, null, null, null, $options);
	}
}
?>