Announcement

Collapse
No announcement yet.

Post-Render

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Post-Render

    I am so close to finally getting an email on a render end. I have some code that works in PowerShell. How do I get it to work in MAX's Post-Render?

    DOSCommand "powershell.exe -command "C:\sendmail\sendemail.ps1" (I tried this in the Post-Render field.)


    $EmailFrom = "bobby.parker@archvizbiz.com"
    $EmailTo = "bobby.parker@archvizbiz.com"
    $Subject = "Subject"
    $Body = "Body"
    $SMTPServer = "mail.hover.com"
    $SMTPClient = New-Object Net.Mail.SmtpClient($SmtpServer, 465)
    $SMTPClient.EnableSsl = $true
    $SMTPClient.Credentials = New-Object System.Net.NetworkCredential("bobby.parker@archviz biz.com", "*****");
    $SMTPClient.Send($EmailFrom, $EmailTo, $Subject, $Body)
    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

  • #2
    Hot dog, I got it! I'll screen record and share shortly.
    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


    • #3
      Here is how I did it if you are interested.

      http://bobby-parker.com/architectura...x-notification
      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


      • #4
        Nice work, Bobby! Thanks for sharing, I'll have to give it a try. Beats remoting in every half hour

        Comment


        • #5
          Hey Batter, batter! Homerun...

          https://www.youtube.com/watch?v=9EdkdaPW2Kg
          Last edited by glorybound; 23-01-2020, 12:23 PM.
          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

          Working...
          X