Giter VIP home page Giter VIP logo

Comments (3)

lorenzo avatar lorenzo commented on May 27, 2024

That's how I thought the feature should work when I implemented it a long time ago. The idea was that, since default basically means that it was no changed on purpose by the developer, then the shell would have a chance to say otherwise.

But, if the developer took the time to specify a different layout, then it would not make a lot of sense to change it from the command line, since that would result in an error.

I'm not attached at all to the current implementation, so you can send a pull request if you strongly feel it should be implemented in another way.

from cakephp-email-queue.

waspinator avatar waspinator commented on May 27, 2024

So if I add an email to the queue with these options

$to = '[email protected]';
$view_vars = [
    'variable_name' => $variable_value
];
$send_at = Time::now();
$options = [
    'subject' => __('Email Subject'),
    'send_at' => $send_at->i18nFormat('yyyy-MM-dd HH:mm:ss'),
    'template' => 'custom_template',
    'layout' => 'custom_layout',
    'format' => 'both'
];
EmailQueue::enqueue($to, $view_vars, $options);

and then send the email using

bin/cake EmailQueue.sender

It shouldn't work? Right now, it sends an empty email. It seems I have to define the --template and --layout options in the bin/cake EmailQueue.sender command for it to work correctly.

I would expect bin/cake EmailQueue.sender to only fall back to default if those fields were empty in the database. In my opinion lines

foreach ($emails as $e) {
    $configName = $e->layout === 'default' ? $this->params['config'] : $e->config;
    $template = $e->layout === 'default' ? $this->params['template'] : $e->template;
    $layout = $e->layout === 'default' ? $this->params['layout'] : $e->layout;
    ...

should be changed to

foreach ($emails as $e) {
    $configName = $e->config === 'default' ? $this->params['config'] : $e->config;
    $template = $e->template === 'default' ? $this->params['template'] : $e->template;
    $layout = $e->layout === 'default' ? $this->params['layout'] : $e->layout;
    ...

... which looks like what it already is. composer must have downloaded some old version. hmm.

from cakephp-email-queue.

lorenzo avatar lorenzo commented on May 27, 2024

It will send only if the current time is now or after the send_time

from cakephp-email-queue.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.