Свежайшие Пирожки от CakePHP по-русски

Полнейшее руководство CakePHP 1.2 на русском языке, горячие новости и полезные статьи

Sending a basic message

To send a message without using a template, simply pass the body of the message as a string (or an array of lines) to the send() method. For example:

Простой текст
  1. $this->Email->from = 'Somebody <somebody@example.com>';
  2. $this->Email->to = 'Somebody Else <somebody.else@example.com>';
  3. $this->Email->subject = 'Test';
  4. $this->Email->send('Hello message body!');