Email Notification

Ask for help and report issues not specific to either the Mac OS X or GTK+ versions of Transmission
Post Reply
744700595
Posts: 1
Joined: Mon Mar 19, 2018 1:12 am

Email Notification

Post by 744700595 »

Wondered if I could ask for a little assistance? Command line and scripting just isn't an area I have particular skills in and while i've given it a go and failed I was hoping someone could come to my rescue?

I would like Transmission to send me an email once a torrent has downloaded, the issue I have is that I'm unsure how to properly modify a script. I've been trying with this script - https://trac.transmissionbt.com/browser ... nt-done.sh

I used a NAS4FREE system with only msmtp in it, and I have successfully configured it to send mail. But I don't know how to modify it in send-email-when-torrent-done.sh. Because I don't have a msmtp command
I hope someone is willing to help me. Thank you

Code: Select all

SUBJECT="Torrent Done!"
FROM_ADDR="transmission@localhost.localdomain"
TMPFILE=`mktemp -t transmission.XXXXXXXXXX`
echo "Transmission finished downloading \"$TR_TORRENT_NAME\" on $TR_TIME_LOCALTIME" >$TMPFILE
$NAIL -v -S from="$FROM_ADDR" -S smtp -s "$SUBJECT" -S smtp=$SMTP_SERVER "$TO_ADDR" < $TMPFILE
rm $TMPFILE
Post Reply