<?php$this->Email->smtpOptions=array('port'=>'587','timeout'=>'30','host'=>'smtp.sendgrid.net','username'=>'apikey','api_key'=>'sendgrid_api_key','client'=>'yourdomain.com');$this->Email->delivery='smtp';$this->Email->from='Your Name ';$this->Email->to='Recipient Name ';$this->set('name','Recipient Name');$this->Email->subject='This is a subject';$this->Email->template='registration';$this->Email->sendAs='both';$this->Email->send();?>