mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 17:47:03 +00:00
14 lines
326 B
Bash
Executable File
14 lines
326 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export SWAKS_OPT_server="127.0.0.1:2500"
|
|
export SWAKS_OPT_to="swaks@inbucket.local"
|
|
|
|
# Basic test
|
|
swaks --h-Subject: "Swaks Plain Text" --body text.txt
|
|
|
|
# HTML test
|
|
swaks --h-Subject: "Swaks HTML" --data html.raw
|
|
|
|
# Attachment test
|
|
swaks --h-Subject: "Swaks Attachment" --attach-type image/png --attach favicon.png
|