I am attempting to send an email using Cake's 'Email' component. I have included the component into my controller and I am using the following code to try send an email.
$this->Email->from = 'Glecto <noreply@glecto.com>';
$this->Email->to = 'gary@glecto.com';
$this->Email->replyTo = 'noreply@glecto.com';
$this->Email->subject = 'Let\'s get started!';
$this->Email->delivery = 'mail';
$this->Email->send('Thank you for signing up');
I've also checked my php.ini to ensure the SMTP setting are set up correctly.
Can anyone spot anything wrong that I'm doing here?