I would love to get a text when V-Ray completes a render. Any brainiacs able to pull something like this off?
Announcement
Collapse
No announcement yet.
Text
Collapse
X
-
Text
Bobby Parker
www.bobby-parker.com
e-mail: info@bobby-parker.com
phone: 2188206812
My current hardware setup:- Ryzen 9 5900x CPU
- 128gb Vengeance RGB Pro RAM
- NVIDIA GeForce RTX 4090 X2
- Windows 11 Pro
Tags: None
-
Post-render email notifications not enough for you?Maxscript made easy....
davewortley.wordpress.com
Follow me here:
facebook.com/MaxMadeEasy
If you don't MaxScript, then have a look at my blog and learn how easy and powerful it can be.
-
My understanding is it will not work unless you have your own email server.Bobby Parker
www.bobby-parker.com
e-mail: info@bobby-parker.com
phone: 2188206812
My current hardware setup:- Ryzen 9 5900x CPU
- 128gb Vengeance RGB Pro RAM
- NVIDIA GeForce RTX 4090 X2
- Windows 11 Pro
Comment
-
Just make a hotmail account and then change the from/to and password in this.
Code:Client = dotNetObject "System.Net.Mail.SmtpClient" Client.Host = "smtp.live.com" /*for hotmail use Client.Host = "smtp.live.com" */ MailMessage = dotNetObject "System.Net.Mail.MailMessage" MailAdressFrom = dotNetObject "System.Net.Mail.MailAddress" "abc@hotmail.com" MailMessage.From = MailAdressFrom MailAdressTo = dotNetObject "System.Net.Mail.MailAddress" "abc@hotmail.com" MailMessage.To.Add MailAdressTo MailMessage.Subject = "TestA" MailMessage.Body = "Test" Client.EnableSsl = true; NetworkCred = dotNetObject "System.Net.NetworkCredential" NetworkCred.UserName = "abc@hotmail.com" NetworkCred.Password = "password" Client.UseDefaultCredentials = true Client.Credentials = NetworkCred Client.Port = 587 Client.Send MailMessage
Maxscript made easy....
davewortley.wordpress.com
Follow me here:
facebook.com/MaxMadeEasy
If you don't MaxScript, then have a look at my blog and learn how easy and powerful it can be.
Comment
-
Interesting. Can it be GMAIL? The last thing I need is another email accountBobby Parker
www.bobby-parker.com
e-mail: info@bobby-parker.com
phone: 2188206812
My current hardware setup:- Ryzen 9 5900x CPU
- 128gb Vengeance RGB Pro RAM
- NVIDIA GeForce RTX 4090 X2
- Windows 11 Pro
Comment
-
Client.Host = "smtp.gmail.com"
Done.Maxscript made easy....
davewortley.wordpress.com
Follow me here:
facebook.com/MaxMadeEasy
If you don't MaxScript, then have a look at my blog and learn how easy and powerful it can be.
Comment
-
Originally posted by Dave_Wortley View PostClient.Host = "smtp.gmail.com" Done.
Bobby Parker www.bobby-parker.comBobby Parker
www.bobby-parker.com
e-mail: info@bobby-parker.com
phone: 2188206812
My current hardware setup:- Ryzen 9 5900x CPU
- 128gb Vengeance RGB Pro RAM
- NVIDIA GeForce RTX 4090 X2
- Windows 11 Pro
Comment
-
One word of caution to free email account users, and this is probably totally fine with Gmail accounts, but I ran into huge problems with my Yahoo account for using their SMTP server to send emails from my site. I had my website set to send order confirmation emails to/from my Yahoo account (I received order confirmation, my customers received order receipts). Yahoo had recently changed its Terms of Service, cracking down on emails not actually originating from its system to cut down on spam. I ended up getting blacklisted, which essentially took my side business completely offline until I was able to get a new hosting account and email system setup. It took me a couple weeks to escape that mess.
If I were to attempt this, I would create a new email account, and use that address strictly for your render completion notifications. That way, if your email address gets flagged as a spammer, you don't get your actual working email address blacklisted.Work:
Dell Precision T7910, Dual Xeon E5-2640 v4 @ 2.40GHz | 32GB RAM | NVIDIA Quadro P2000 5gb | NVIDIA GeForce GTX 980Ti 6GB | NVIDIA GeForce GTX 1080Ti 11GB
V-Ray Benchmark: CPU 00:52 | GPU 00:32
Home:
AMD Threadripper 1950X 3.4GHz 16-Core | 32GB RAM | (2) NVIDIA GeForce GTX 1080Ti 11GB
V-Ray Benchmark: CPU 00:47 | GPU 00:34
https://pcpartpicker.com/list/kXKcxG
Comment
-
Good to know, thanks!Originally posted by particlerealities View PostOne word of caution to free email account users, and this is probably totally fine with Gmail accounts, but I ran into huge problems with my Yahoo account for using their SMTP server to send emails from my site. I had my website set to send order confirmation emails to/from my Yahoo account (I received order confirmation, my customers received order receipts). Yahoo had recently changed its Terms of Service, cracking down on emails not actually originating from its system to cut down on spam. I ended up getting blacklisted, which essentially took my side business completely offline until I was able to get a new hosting account and email system setup. It took me a couple weeks to escape that mess.
If I were to attempt this, I would create a new email account, and use that address strictly for your render completion notifications. That way, if your email address gets flagged as a spammer, you don't get your actual working email address blacklisted.Bobby Parker
www.bobby-parker.com
e-mail: info@bobby-parker.com
phone: 2188206812
My current hardware setup:- Ryzen 9 5900x CPU
- 128gb Vengeance RGB Pro RAM
- NVIDIA GeForce RTX 4090 X2
- Windows 11 Pro
Comment
Comment