avoutic/web-framework-postmark

The Postmark module for web-framework

dev-main 2025-03-29 15:38 UTC

This package is auto-updated.

Last update: 2025-03-29 17:30:21 UTC


README

This module provides Postmark email service integration for WebFramework.

Features

  • Send raw emails via Postmark
  • Send template-based emails via Postmark
  • Automatic instrumentation for email sending
  • Configurable default sender email
  • Error handling for common Postmark API issues

Requirements

  • PHP 8.2 or higher
  • Web Framework 8.x
  • Postmark API key

Installation

Install via Composer:

composer require avoutic/web-framework-postmark

Configuration

If you are using the definition from definitions/defitinions.php. You can just add the following postmark.php to your auth config directory (config/auth):

<?php

return 'your-api-key-here';

Usage

The module provides a PostmarkMailService that implements the Web Framework's MailService interface. It will be automatically configured via dependency injection.

License

MIT License - see LICENSE file for details