If you want to see how it works, see the README on the repo.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd ~/opt/foxitsoftware/foxitreader | |
ln -s /lib64/libssl.so.10 lib/libssl.so.1.0.0 | |
ln -s /lib64/libcrypto.so.10 lib/libcrypto.so.1.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Dependencies: `gem install ruby-gmail` | |
require 'gmail' | |
require 'csv' | |
email_subject = "subject line" | |
email_body = File.open("email.txt", "rb").read | |
username = "username" |