kcarrier / RPLib

Python Library of Esri geoprocessing tools and functions for geodatabase administration
http://kcarrier.github.com/RPLib
5 stars 4 forks source link

Email Function multiple To addresses failing #7

Closed kcarrier closed 10 years ago

kcarrier commented 10 years ago

server.sendmail(email_From, [email_To], msg)

should be

server.sendmail(email_From, email_To, msg)

around line 2029 and 2042

Need to fix this asap and update library

kcarrier commented 10 years ago

Fixed.