Send Email with Houdini (Python)

Example: You want to get an email notification after your script is completed. I suggest creating a new email account just for sending emails with Houdini. With gmail you’ll need to allow less secure apps to log in.

def email(): import smtplib import hou s = smtplib.SMTP_SSL('smtp.gmail.com') s.login("your email adress", "password") s.sendmail("your email adress", "receiver email adress", "message") s.quit()
Previous
Previous

Set all image plane images to a new path in Maya (Python)

Next
Next

For-loop VEX vs Python