Mass mailing in Clojure. Mailblaster lets you email a list of emails with single message. Each recipient is emailed their own message.
You need to create a properties file with your smtp host information. The format for that is the following. It should be created in a file called smtp.properties
in a directory called .smtp
under your $HOME
directory.
host="SERVER"
port=PORT
user="USERNAME"
pass="PASSWORD"
$ lein uberjar
Put your emails in a single file called emails.csv
. Put each email on it's own line. Next write your email and save it in a file called message.txt
.
Next, come up with a subject for your message and remember your email address and pass it along as the from address.
$ java -jar target/mailblaster-1.0.0-standalone.jar -f your-email@foo.com -s "Your email subject" -e emails.csv -m message.txt
There are other options which you can see with the following.
$ java -jar target/mailblaster-1.0.0-standalone.jar
Distributed under the Eclipse Public License, the same as Clojure.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close