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 outlook.com username”;$mail->Password = “Your outlook.com password”;$mail->Host = “smtp-mail.outlook.com”;$mail->Port = 587;$mail->IsSMTP();$mail->SMTPSecure=”tls”;$mail->SMTPAuth = true;$mail->setFrom(“From address”, “From name”);$mail->addReplyTo(“Reply …
Read moreSend emails when torrent is done – Windows & uTorrent