http://book.cakephp.org/2.0/en/core-utility-libraries/email.html
check this, with method you set properties :) -- Lep pozdrav, Tilen Majerle http://majerle.eu 2012/1/8 Daniel <[email protected]> > I am using the CakeEmail as follows (I have hidden some sensitive > data) : > > function sendConfirmationMail($email_to, $username, $user_id, > $conf_data) { > $email = new CakeEmail(); > $email->smtpOptions = array( > 'port'=>'25', > 'timeout'=>'30', > 'host' => 'smtp.talktalk.net', > 'username'=>'xxxxxx', > 'password'=>'xxxxxx' > ); > $email->delivery = 'smtp'; > $email->to = $email_to; > $email->subject = 'Welcome to xxxxx'; > $email->replyTo = '[email protected]'; > $email->from = '[email protected]'; > $email->template = $email->subject.'. You have created an account > with the user name: '. > $username; > $email->sendAs = 'html'; > $email->_debug = true; > return $email->send(); > } > > I get the error: > From is not specified. > Error: An Internal Error Has Occurred > > Stack Trace > #0 C:\xampp\htdocs\xxxxx\Controller\Component\KCompsComponent.php(35): > CakeEmail->send() ... > > Thanks. > > -- > Our newest site for the community: CakePHP Video Tutorials > http://tv.cakephp.org > Check out the new CakePHP Questions site http://ask.cakephp.org and help > others with their CakePHP related questions. > > > To unsubscribe from this group, send email to > [email protected] For more options, visit this group > at http://groups.google.com/group/cake-php > -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php
