bnomei/kirby-resend

This package is abandoned and no longer maintained. No replacement package was suggested.

Send transactional E-Mail with Resend

Maintainers

πŸ‘ bnomei

Package info

github.com/bnomei/kirby-resend

Type:kirby-plugin

pkg:composer/bnomei/kirby-resend

Statistics

Installs: 2

Dependents: 0

Suggesters: 0

Stars: 6

Open Issues: 0

1.0.0 2023-10-03 09:29 UTC

Requires

Suggests

Provides

None

Conflicts

None

Replaces

None

MIT bd7b889431e15f90b13101ba4e9fd5bcef26409f

  • Bruno Meilick <b.woop@bnomei.com>

mailemailhtmlsmtpresponsivesendtransactionale-mailkirbykirby-pluginkirby-cmsresend

This package is auto-updated.

Last update: 2024-11-24 18:13:47 UTC


README

πŸ‘ Release
πŸ‘ Downloads
πŸ‘ Build Status
πŸ‘ Coverage Status
πŸ‘ Maintainability
πŸ‘ Twitter

Send transactional E-Mail with Resend

Sending via SMTP

<?php

// regular "transactional" email
$to = 'roger.rabbit@disney.com';

$success = kirby()->email([
 'from' => new \Kirby\Cms\User([
 'email' => 'resend@example.com', // your verified resend sender
 'name' => 'Example Name', // your name
 ]),
 'to' => $to,
 'subject' => 'Sending E-Mails is fun',
 'body' => [
 'html' => '<h1>Headline</h1><p>Text</p>',
 'text' => "Headline\n\nText",
 ],
 'transport' => resend()->transport(), // plugin helper to get SMTP config array
])->isSent();

Sending via PHP lib (work in progress)

$client = resend()->client();
$sendResult = $client->emails->send([
 'from' => 'onboarding@resend.dev',
 'to' => 'delivered@resend.dev',
 'subject' => 'Hello World',
 'html' => '<strong>it works!</strong>',
]);

// Getting the ID from the response Email object
// https://github.com/resendlabs/resend-php/blob/main/src/Email.php
echo $sendResult->id;

Sending Kirby Panel emails via Resend

If you want to make Kirby use Resend to send emails like the password reset from panel you have to set global auth and email config values.

site/config/config.php

return [
 // …other settings
 'auth' => [
 'methods' => ['password', 'password-reset'],
 'challenge' => [
 'email' => [
 'from' => 'resend@example.com', // your verified postmark sender
 'fromName' => 'Example Name',
 ]
 ]
 ],
 'email' => [
 'transport' => [
 'type' => 'smtp',
 'host' => 'smtp.resend.com',
 'port' => 587,
 'security' => true,
 'auth' => true,
 'username' => 'resend', // needs to be 'resend'
 'password' => 'YOUR-APIKEY-HERE', // your resend apikey
 ]
 ]
];

Settings

You can set the apikey in the config.

site/config/config.php

return [
 // other config settings ...
 'bnomei.resend.apikey' => 'YOUR-APIKEY-HERE',
];

You can also set a callback if you use the dotenv Plugin.

site/config/config.php

return [
 // other config settings ...
 'bnomei.resend.apikey' => function() { return env('RESEND_APIKEY_TOKEN'); },
];

Settings

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.