インタフェース: NetworkManager

インタフェース > コア インタフェース > NetworkManager

 

   

コア インタフェース - クイック ナビゲーション

NetworkManager インタフェースは、MAXScript から電子メール メッセージを送信するためのメソッドを提供しています。

3ds Max 2009 以降 で使用可能です。

   

メソッド:

<boolean>NetworkManager.Send <string>to <string>from <string>subject <string>body <string>server 	 

電子メール メッセージを送信します。

1 番目の引数は送信先のアドレスです。

2 番目の引数はメッセージ送信元のアドレスです。

3 番目の引数はメッセージの件名です。

4 番目の引数はメッセージの本文です。

5 番目の引数はメッセージの送信に使用される E メール サーバです。

例:

(
theAddress = "youremail@yourcompany.com"
theSender = "myemail@mycompany.com"
theSubject = "Greetings from 3ds Max!"
theBody = "This email was sent by MAXScript\n"
theBody += "from inside of 3ds Max!\n\n"
theBody += "Cool, eh?"
theServer = "smtp.myprovider.net"
res = NetworkManager.Send theAddress theSender theSubject theBody theServer
if res then
messagebox ("Email sent successfully to " + theAddress)
else
messagebox ("Failed to send email to " + theAddress)
)