render_and_email.jsx

レンダリング終了後にメールでお知らせしてくれるスクリプトですが、デフォルトだと「sending mail failed」ってなってしまう・・・
(メールサーバーはさくらインターネット


で、試しにemail_methods.jsxの163行目のポートを25から587に変更してみた。


うまくいったけどプロジェクト名が日本語だとお知らせメールが文字化けてくる(´・ω・`)
文字コードの変更の仕方なんてわかりません・・・



if (!this.open (this._host + ":25", "binary"))
           ↓
if (!this.open (this._host + ":587", "binary"))