Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 165149
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T11:52:12+00:00 2026-05-11T11:52:12+00:00

I have a very simple model. I want to add a send email routine

  • 0

I have a very simple model. I want to add a send email routine to on of the methods for the model:

$this->Email->delivery = 'smtp'; $this->Email->template = 'default'; $this->Email->sendAs = 'text';      $this->Email->from    = 'email'; $this->Email->to      = 'email'; $this->Email->subject = 'Error'; 

I’ve tried putting

App::import('Component', 'Email'); 

at the top, to no avail. The error I get is:

Fatal error: Call to undefined method stdClass::send() in E:\xampp\htdocs8080\app\models\debug.php on line 23

Any ideas?

I’m running CakePHP 1.2

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T11:52:13+00:00Added an answer on May 11, 2026 at 11:52 am

    Well, you’re doing it wrong way. You should place email send routine in your AppController:

    function _sendMail($to,$subject,$template) {     $this->Email->to = $to;     // $this->Email->bcc = array('secret@example.com'); // copies     $this->Email->subject = $subject;     $this->Email->replyTo = 'noreply@domain.com';     $this->Email->from = 'MyName <noreply@domain.com>';     $this->Email->template = $template;     $this->Email->sendAs = 'text'; //Send as 'html', 'text' or 'both' (default is 'text')     $this->Email->send(); } 

    Then use it from ANY controller like this:

    $this->_sendMail($this->data['User']['email'],'Thanks for registering!','register'); 

    And don’t forget to place

    var $components = array('Email'); 

    in controllers, in which you ‘re using _sendMail function.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this very simple TPH Model. When I add an object using context.TIImport.AddObject(tiObj)
I have a very simple model like this: class User < ActiveRecord::Base has_many :cookies
Supose we have a very simple model: Station has at least one Train Train
I have this very simple jQuery function: $(.milestone-in-tree).live({ mouseenter: function() { setTimeout( $.ajax({ type:
I have a very simple user model. When I first created it, it had
Hey, I have a maybe very simple problem using the PreLoadFcn in my model.
I have a very simple object model with a base class Person and two
I have very simple piece of code. The goal is when i input four-digit
I have very simple OpenGL ES example similar to Hehe's example : http://nehe.gamedev.net/tutorial/ios_lesson_02__first_triangle/50001/ As
I have very simple window where I have 2 buttons - one for cancel,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.