
Originally Posted by
attardi
Hi,
I had the same problem and solved it by using "wmailto"
Basically, I created a batch file to copy wmailto.ini to the client (to avoid the manual copying for each user as this contains the exchange server mail info)
Then the script exectues the command to send the email.
Then I set up a hook on the users local to exectute this batch. Therefore, an email is sent to all receptians that I included every time there is a commit
The only tadient thing is that you have to set-up the script for every user. Annoying if there is a big team
Let me know if manage something that does not need such thing
Or if you want to use something that was written in this century, sending email via PowerShell is literally a single line.
Code:
send-mailmessage -to $recipients -from $sender -subject "Subversion commit notification" -body "Developer B has committed the following items: " + $items -smtpserver mail.yourcompany.com
Bookmarks