Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jorgebg/mtadrop
Sends an email to a single recipient straight to his MTA
https://github.com/jorgebg/mtadrop
Last synced: about 2 months ago
JSON representation
Sends an email to a single recipient straight to his MTA
- Host: GitHub
- URL: https://github.com/jorgebg/mtadrop
- Owner: jorgebg
- License: mit
- Created: 2015-03-07T22:11:22.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-07T22:36:59.000Z (almost 10 years ago)
- Last Synced: 2024-04-14T03:59:25.125Z (9 months ago)
- Language: PHP
- Homepage:
- Size: 117 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MTA Drop
Sends an email to a **single recipient** straight to his MTA.
Looks up for the MX DNS records of the recipient SMTP server and attempts the delivery through them.## Requirements
* PHP 5.5.9-1## Install
Just download and give it execution permissions:
```
curl -o ./mtadrop https://raw.githubusercontent.com/jorgebg/mtadrop/master/mtadrop && chmod +x ./mtadrop
```## Usage
```
usage: mtadrop [-fSENDER] [-mMESSAGE] RECIPIENT [SUBJECT]
```## Examples
```
./mtadrop [email protected]
./mtadrop [email protected] "To infinity..."
./mtadrop -f"[email protected]" [email protected] "To infinity..."
./mtadrop -m"...and beyond!" [email protected] "To infinity..."
```