https://github.com/wearerequired/wp-mail-return-path
WordPress mu-plugin to set sender/return path for mail if not set.
https://github.com/wearerequired/wp-mail-return-path
spf-record wordpress wordpress-muplugin wp-mail
Last synced: 12 months ago
JSON representation
WordPress mu-plugin to set sender/return path for mail if not set.
- Host: GitHub
- URL: https://github.com/wearerequired/wp-mail-return-path
- Owner: wearerequired
- License: gpl-2.0
- Created: 2019-10-10T13:03:14.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-10T13:21:06.000Z (over 6 years ago)
- Last Synced: 2025-02-13T10:04:19.535Z (12 months ago)
- Topics: spf-record, wordpress, wordpress-muplugin, wp-mail
- Language: PHP
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# WP Mail Return Path
Sets sender/return path for mail if not set to prevent auto-filling it with a server name which isn't authorized to send emails.
## Installation
The package type is `wordpress-muplugin`. Example of a `composer.json`:
```json
{
"name": "wearerequired/something",
"description": "required.com",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "required gmbh",
"email": "info@required.com"
}
],
"require": {
"php": ">=5.6",
"koodimonni/composer-dropin-installer": "dev-master",
"johnpbloch/wordpress": "~4.9",
"wearerequired/wp-mail-return-path": "^1.0"
},
"extra": {
"wordpress-install-dir": "wordpress/wp",
"installer-paths": {
"wordpress/content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"vendor/{$vendor}/{$name}/": [
"type:wordpress-muplugin"
],
"wordpress/content/themes/{$name}/": [
"type:wordpress-theme"
]
},
"dropin-paths": {
"wordpress/content/mu-plugins/": [
"type:wordpress-muplugin"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}
```