Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pixelart/swiftmailer-manipulator-bundle
Manipulates outgoing mails from Swiftmailer
https://github.com/pixelart/swiftmailer-manipulator-bundle
bundle development php staging swiftmailer symfony symfony-bundle
Last synced: 2 months ago
JSON representation
Manipulates outgoing mails from Swiftmailer
- Host: GitHub
- URL: https://github.com/pixelart/swiftmailer-manipulator-bundle
- Owner: pixelart
- License: mit
- Created: 2016-10-11T15:16:43.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-03T12:06:43.000Z (about 8 years ago)
- Last Synced: 2024-10-01T15:28:07.280Z (4 months ago)
- Topics: bundle, development, php, staging, swiftmailer, symfony, symfony-bundle
- Language: PHP
- Size: 45.9 KB
- Stars: 2
- Watchers: 6
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
Swiftmailer Manipulator for Symfony
===================================[![Build Status](https://travis-ci.org/pixelart/swiftmailer-manipulator-bundle.svg?branch=master)](https://travis-ci.org/pixelart/swiftmailer-manipulator-bundle)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/pixelart/swiftmailer-manipulator-bundle/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/pixelart/swiftmailer-manipulator-bundle/?branch=master)
[![Code Coverage](https://scrutinizer-ci.com/g/pixelart/swiftmailer-manipulator-bundle/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/pixelart/swiftmailer-manipulator-bundle/?branch=master)
[![Code Style](https://styleci.io/repos/70606516/shield?style=flat)](https://styleci.io/repos/70606516)Sometimes you have staging systems, where you can't install [MailHog] and
using `delivery_address` or `disable_delivery` on the SwiftmailerBundle is
not enough. For example your customer wants the mail to be really delivered.But maybe the crafted mail goes to a partner, retailer, user, whatever and now
they are worried why they got them (for example notification systems).This bundle can help you! It provides a plugin into Swiftmailer, which allows
you to modify the subject or body or the from address of every message before
delivery.Installation
------------### Step 1: Download the Bundle
Open a command console, enter your project directory and execute the
following command to download the latest stable version of this bundle:```console
$ composer require pixelart/swiftmailer-manipulator-bundle ^1.0
```This command requires you to have Composer installed globally, as explained
in the [installation chapter][composer global install] of the Composer
documentation.### Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the `app/AppKernel.php` file of your project:```php