https://github.com/fredlackey/lambda-forward-email
Forward email to external domain using SNS & S3
https://github.com/fredlackey/lambda-forward-email
Last synced: 2 months ago
JSON representation
Forward email to external domain using SNS & S3
- Host: GitHub
- URL: https://github.com/fredlackey/lambda-forward-email
- Owner: FredLackey
- License: apache-2.0
- Created: 2020-04-12T16:50:59.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-12T17:34:37.000Z (about 5 years ago)
- Last Synced: 2025-01-24T10:30:42.084Z (4 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lambda-forward-email
Forwards incoming messages to an external destination. Original message is attached. An optional prefix is added to the subject line (ie `FW:`, etc.);## Environment Variables:
| Name | Description |
|--------|---------------|
| `IncomingBucketName` | Name of bucket to retrieve saved message from. |
| `IncomingBucketPrefix` | Optional prefix of items stored in the incoming bucket. |
| `ForwardingEmail` | Fowarded messages are from this email address. |
| `RecipentEmail` | Target email address for forwarded messages. |
| `SubjectPrefix` | Optional prefix of subject of forwaded message (ie `FW:`, etc.). |
| `Region` | AWS Region name where all functionality resides (S3, Lamda, etc.). |