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

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

Class Attributes and Variables

These are the values that you can set before you call EmailComponent::send()

toaddress the message is going to (string)
ccarray of addresses to cc the message to
bccarray of addresses to bcc (blind carbon copy) the message to
replyToreply to address (string)
fromfrom address (string)
subjectsubject for the message (string)
templateThe email element to use for the message (located in app/views/elements/email/html/ and app/views/elements/email/text/)
layoutThe layout used for the email (located in app/views/layouts/email/html/ and app/views/layouts/email/text/)
lineLengthLength at which lines should be wrapped. Defaults to 70. (integer)
sendAshow do you want message sent string values of text, html or both
attachmentsarray of files to send (absolute and relative paths)
deliveryhow to send the message (mail, smtp [would require smtpOptions set below] and debug)
smtpOptionsassociative array of options for smtp mailer (port, host, timeout, username, password)

There are some other things that can be set but you should refer to the api documentation for more information