Send emails when torrent is done – Windows & uTorrent

Here’s a snippet of PHP code to help you send emails from Windows machine when a torrent has downloaded through uTorrent.I am using Outlook.com to send and receive email but you can easily use GMail or any other internet mail service. You will need PHPMailer class $argOpts = “n:e:”;$argVal = getopt($argOpts);$torrent_name = $argVal[‘n’];$to_email = $argVal[‘e’];require(“phpmailer/class.phpmailer.php”);$mail = new PHPMailer();$mail->Username = “Your …

Read moreSend emails when torrent is done – Windows & uTorrent