CakePHP 使用来自 Shell cronjob 的电子邮件组件

CakePHP using Email component from Shell cronjob(CakePHP 使用来自 Shell cronjob 的电子邮件组件)
本文介绍了CakePHP 使用来自 Shell cronjob 的电子邮件组件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试像从控制器一样从 CakePHP shell 发送电子邮件.

I'm trying to send an email from a CakePHP shell just as you would from the Controller.

以下大部分代码改编自 这篇关于面包店的过时文章 及其评论.电子邮件正在发送,但是行 $controller->set('result', $results[$i]); 抛出以下通知:

Most of the code below was adapted from this dated article on the Bakery and it's comments. The email is sending, however the line $controller->set('result', $results[$i]); throws the following notices:

注意:未定义的属性:查看::$webroot/home/jmccreary/www/intranet.sazerac.com/cakephp/cake/libs/view/view.php在线 813

Notice: Undefined property: View::$webroot in /home/jmccreary/www/intranet.sazerac.com/cakephp/cake/libs/view/view.php on line 813

PHP 注意:未定义变量:导致/home/jmccreary/www/intranet.sazerac.com/cakephp/app/views/elements/email/text/nea/task_reminder_it.ctp第 2 行

PHP Notice: Undefined variable: result in /home/jmccreary/www/intranet.sazerac.com/cakephp/app/views/elements/email/text/nea/task_reminder_it.ctp on line 2

所以我没有将任何变量传递给我的电子邮件视图.

So I'm not getting any of the variables passed to my email view.

我怎样才能做到这一点,最好遵循 Cake 约定?

How can I do this, ideally following the Cake conventions?

class NotificationShell extends Shell {
    var $uses = array('Employee', 'Task');

    function main() {
        // run if no action is passed
    }

    function nea_task_reminder() {
        // build Task to Employee relationship
        $this->Task->bindModel(array('belongsTo' => array('Employee' => array('className' => 'Employee', 'foreignKey' => 'object_id'))));
        $results = $this->Task->find('all', array('conditions' => array('application_id' => 1, 'completed_by_id' => 0), 'contain' => array('Employee' => array('Contact', 'Position'))));

        $count = count($results);
        if ($count) {
            App::import('Core', 'Controller');
            App::import('Component', 'Email');
            $controller =& new Controller();
            $email =& new EmailComponent();
            $email->startup($controller);

            // send email
            $email->from = Configure::read('Email.from');
            $email->to = 'jmccreary@whatever.com';
            $email->replyTo = 'no-reply@whatever.com';
            $email->template = 'nea/task_reminder_it';
            $email->sendAs = 'text';

            for ($i = 0; $i < $count; ++$i) {
                $email->subject = 'NEA Notification: Task Reminder for ' . $results[$i]['Employee']['Contact']['full_name'];
                $controller->set('result', $results[$i]);
                $email->send();
            }
        }
    }
}

推荐答案

问题在于您初始化 EmailComponent 类的方式.如果您查看源代码,startup() 方法实际上没有主体,因此它什么也不做.您的控制器实际上并未分配给 EmailComponent.问题不在于 $controller->set('results', ...);.您需要使用 EmailComponent::initialize() 而不是 EmailComponent::startup().

The problem is the way you're initializing the EmailComponent class. If you look at the source code, the startup() method doesn't actually have a body so it does nothing. Your controller isn't actually assigned to the EmailComponent. The problem isn't $controller->set('results', ...);. You need to use EmailComponent::initialize() instead of EmailComponent::startup().

$controller =& new Controller();
$email =& new EmailComponent(null);
$email->initialize($controller);

来源:

  1. http://的评论部分/bakery.cakephp.org/articles/Jippi/2007/12/02/emailcomponent-in-a-cake-shell
  2. EmailComponent::startup() 来源

这篇关于CakePHP 使用来自 Shell cronjob 的电子邮件组件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)