Git Product home page Git Product logo

kirby3-postmark's Introduction

Kirby 3 Postmark

Release Downloads Build Status Coverage Status Maintainability Twitter

Send transactional E-Mail with Postmark

Commerical Usage


Support open source!

This plugin is free but if you use it in a commercial project please consider to sponsor me or make a donation.
If my work helped you to make some cash it seems fair to me that I might get a little reward as well, right?

Be kind. Share a little. Thanks.

‐ Bruno
 
M O N E Y
Github sponsor Patreon Buy Me a Coffee Paypal dontation Hire me

Wiki

Continue to the Postmark Plugin Wiki to read more on how to install, setup and use this plugin.

Dependencies

Disclaimer

This plugin is provided "as is" with no guarantee. Use it at your own risk and always test it yourself before using it in a production environment. If you find any issues, please create a new issue.

License

MIT

It is discouraged to use this plugin in any project that promotes racism, sexism, homophobia, animal abuse, violence or any other form of hate speech.

kirby3-postmark's People

Contributors

bnomei avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

kirby3-postmark's Issues

Required Auth Sendername

https://forum.getkirby.com/t/postmark-app-for-all-emails/24389/8?u=bnomei

@texnixe

Ok, after creating an account myself, I have now found what the problem is. You need a verified sender name, which you have to set with the auth config options:

return [
    // …other settings
    'auth' => [
        'methods' => ['password', 'password-reset'],
        'challenge' => [
            'email' => [
                'from'     => '[email protected]',
                'fromName' => 'My Name',
            ]
        ]
    ],
    'email' => [
        'transport' => [
            'type' => 'smtp',
            'host' => 'smtp.postmarkapp.com',
            'port' => 587,
            'security' => true,
            'auth' => true,
            'username' => 'username',
            'password' => 'password',
        ]
    ]
];

undefined array key "apitoken"

With the version 2.0.0, the code is looking for the apitoken config setting to make a new PostmarkClient instance on line 36 of classes/Postmark.php but can't find it since it isn't pulled in through the plugin $defaults above. I added that line locally and seems to work now.

Want me to do a pull request?

image

hash_hmac() error

Thanks for the great plugin :) Postmark is the easiest for me to use. I composer installed the lastest version and have this error...

hash_hmac(): Passing null to parameter #3 ($key) of type string is deprecated

image

Running Kirby 3.9 and PHP 8.2. Did I do something wrong?

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.