Giter VIP home page Giter VIP logo

Comments (3)

Dahfrenk avatar Dahfrenk commented on June 12, 2024 1

@daftspunk You were right, I was using the format below. I will follow the documentation to revision my function. Thanks!

public function registerMailTemplates()
    {
        return [
            'templates' => [
                'vendor.plugin::mail.form_submit'   => 'vendor.plugin::lang.strings.mail_form_submit',
            ],
            'layouts' => [
                'custom' => 'vendor.plugin::layouts.artisan'
            ],
            'partials' => [
                'custom_header'  => 'vendor.plugin::partials.header',
                'custom_footer'  => 'vendor.plugin::partials.footer',
            ]
        ];
    }

from october.

daftspunk avatar daftspunk commented on June 12, 2024

Hey @Dahfrenk

Check the registerMailTemplates method. Some older plugins were using this format:

// Invalid syntax from v3.6
[
    'vendor.plugin::view.hint.1' => 'vendor.plugin::lang.string.1',
    'vendor.plugin::view.hint.2' => 'vendor.plugin::lang.string.2',
    'vendor.plugin::view.hint.3' => 'vendor.plugin::lang.string.3',
]

The language string part was never used for anything, or documented anywhere, but some plugins were using this syntax (including official ones) and it likely replicated from there.

Change it to either:

// Valid syntax (backward compatible)
[
    'vendor.plugin::view.hint.1',
    'vendor.plugin::view.hint.2',
    'vendor.plugin::view.hint.3',
]

Or, if you want to use the 3.6 syntax:

// Newer syntax
[
    'shorter:mail.code.1' => 'vendor.plugin::view.hint.1',
    'shorter:mail.code.2' => 'vendor.plugin::view.hint.2',
    'shorter:mail.code.3' => 'vendor.plugin::view.hint.3',
]

Related documentation: https://docs.octobercms.com/3.x/extend/system/sending-mail.html#registering-a-template

Hopefully it helps.

from october.

daftspunk avatar daftspunk commented on June 12, 2024

Thanks for reporting back, we've added something to the release notes about this: https://octobercms.com/support/article/rn-37#short-mail-templates

from october.

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.