Skip to content

Instantly share code, notes, and snippets.

@jamesfg
jamesfg / Code.php
Last active June 3, 2019 08:42
Email
<?php
$Email = new CakeEmail();
$Email->template('default', 'default')
->emailFormat('html')
->to('email')
->from('email')
->viewVars(array(
'value' => 'jamesfg',
'content' => 'content test',
'title_for_layout'=> 'Title Test'))
<?php
$apiUrl = "https://www.googleapis.com/civicinfo/us_v1/representatives/lookup?fields=officials&key=AIzaSyARokMXd73Cj3k0rXRFh-s689q_uprujTY";
// $json_url = $apiUrl;
//
// $json = file_get_contents($json_url);
//
// $data = json_decode($json,true);
//