1
0
mirror of https://github.com/node-red/node-red-nodes.git synced 2023-10-10 13:36:58 +02:00
node-red-nodes/social/email/locales/ja/61-email.html
Hiroyasu Nishiyama 8ea3969714 Japanese translation of info text for twitter/feedparse/email/rbe nodes (#421)
* add Japanese info text of twitter node

* add Japanese info text of feedparse node

* add Japanese info text of email node

* add Japanese info text of rbe node

* minor fix of Japanese info text of email node

* minor fix of Japanese info text of email node
2018-03-29 08:49:30 +01:00

47 lines
3.6 KiB
HTML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script type="text/x-red" data-help-name="e-mail">
<p><code>msg.payload</code>email<code>msg.topic</code></p>
<p>メッセージの受信者のデフォルトはノードに設定できます空のままとした場合は入力メッセージの<code>msg.to</code><code>msg.cc</code><code>msg.bcc</code></p>
<p><code>msg.from</code><code>ID</code></p>
<p>ペイロードはHTML形式とすることも可能です</p>
<p>ペイロードにバイナリバッファを指定すると添付ファイルに変換しますファイル名は<code>msg.filename</code><code>msg.description</code></p>
<p><code>msg.attachments</code>
<a href="https://www.npmjs.com/package/nodemailer#attachments"
target="_new">nodemailer</a>1</p>
<p>受信側で必要な場合には<code>msg.envelope</code>fromto</p>
<p>: SMTP over SSLを465番ポートで利用</p>
</script>
<script type="text/x-red" data-help-name="e-mail in">
<p>IMAPサーバから<b>emailを一件</b></p>
<p>件名を<code>msg.topic</code><code>msg.payload</code>
text/htmlがあれば<code>msg.html</code>
<code>msg.from</code><code>msg.date</code>
します</p>
<p>さらに<code>msg.header</code>からヘッダオブジェクトを参照できます。ヘッダオブジェクトは<i>to</i><i>cc</i></p>
<p>この実装にはimapモジュールを利用しています</p>
<p><b>:</b> 1</p>
<p>: SMTP over SSLを993番ポートで利用します</p>
<p>入力メールに添付ファイルがある場合は
<code>msg.attachments</code>
イルを表すオブジェクトからなる配列です要素オブジェクトの形式は次の通
りです:</p>
<pre>
{
contentType: // MIME項目種別
fileName: // 添付ファイルの想定ファイル名
transferEncoding: // 元の添付ファイルのエンコーディング
contentDisposition: // 不明
generatedFileName: // 添付ファイルの想定ファイル名
contentId: // 添付ファイルの一意な識別子
checksum: // データのチェックサム
length: // データのバイト数
content: // 実際のデータを表すNode.jsのバッファオブジェクト
// content.toString('base64')によりbase64形式の文字列に変換可能
}
</pre>
<p>POP3プロトコルでのデフォルトポート番号は素のTCPでは110番SSLでは
995番ですIMAPプロトコルでは素のTCPでは143番SSLでは993番です</p>
</script>