mirror of
				https://github.com/node-red/node-red-nodes.git
				synced 2025-03-01 10:37:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			204 lines
		
	
	
		
			8.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			204 lines
		
	
	
		
			8.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!--
 | |
|   Copyright 2013, 2015 IBM Corp.
 | |
| 
 | |
|   Licensed under the Apache License, Version 2.0 (the "License");
 | |
|   you may not use this file except in compliance with the License.
 | |
|   You may obtain a copy of the License at
 | |
| 
 | |
|   http://www.apache.org/licenses/LICENSE-2.0
 | |
| 
 | |
|   Unless required by applicable law or agreed to in writing, software
 | |
|   distributed under the License is distributed on an "AS IS" BASIS,
 | |
|   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
|   See the License for the specific language governing permissions and
 | |
|   limitations under the License.
 | |
| -->
 | |
| 
 | |
| <script type="text/x-red" data-template-name="e-mail">
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-name"><i class="fa fa-envelope"></i> <span data-i18n="email.label.to"></span></label>
 | |
|         <input type="text" id="node-input-name" placeholder="email@address.com">
 | |
|     </div>
 | |
|     <!-- <div class="form-row">
 | |
|         <label for="node-input-pin"><i class="fa fa-asterisk"></i> Service</label>
 | |
|         <select type="text" id="node-input-pin" style="width: 150px;">
 | |
|             <option value="-" disabled> </option>
 | |
|             <option value="DynectEmail">DynectEmail</option>
 | |
|             <option value="Gmail">Gmail</option>
 | |
|             <option value="hot.ee">hot.ee</option>
 | |
|             <option value="Hotmail">Hotmail</option>
 | |
|             <option value="iCloud">iCloud</option>
 | |
|             <option value="mail.ee">mail.ee</option>
 | |
|             <option value="Mail.Ru">Mail.Ru</option>
 | |
|             <option value="Mailgun">Mailgun</option>
 | |
|             <option value="Mailjet">Mailjet</option>
 | |
|             <option value="Mandrill">Mandrill</option>
 | |
|             <option value="Postmark">Postmark</option>
 | |
|             <option value="QQ">QQ</option>
 | |
|             <option value="QQex">QQex</option>
 | |
|             <option value="SendGrid">SendGrid</option>
 | |
|             <option value="SendCloud">SendCloud</option>
 | |
|             <option value="SES">SES</option>
 | |
|             <option value="Yahoo">Yahoo</option>
 | |
|             <option value="yandex">yandex</option>
 | |
|             <option value="Zoho">Zoho</option>
 | |
|          </select>
 | |
|     </div> -->
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-server"><i class="fa fa-globe"></i> <span data-i18n="email.label.server"></span></label>
 | |
|         <input type="text" id="node-input-server" placeholder="smtp.gmail.com">
 | |
|     </div>
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-port"><i class="fa fa-random"></i> <span data-i18n="email.label.port"></span></label>
 | |
|         <input type="text" id="node-input-port" placeholder="465">
 | |
|     </div>
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-userid"><i class="fa fa-user"></i> <span data-i18n="email.label.userid"></span></label>
 | |
|         <input type="text" id="node-input-userid">
 | |
|     </div>
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-password"><i class="fa fa-lock"></i> <span data-i18n="email.label.password"></span></label>
 | |
|         <input type="password" id="node-input-password">
 | |
|     </div>
 | |
|     <br/>
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-dname"><i class="fa fa-tag"></i> <span data-i18n="node-red:common.label.name"></span></label>
 | |
|         <input type="text" id="node-input-dname" data-i18n="[placeholder]node-red:common.label.name">
 | |
|     </div>
 | |
|     <div class="form-tips" id="node-tip"><span data-i18n="[html]email.tip.cred"></span></div>
 | |
| </script>
 | |
| 
 | |
| <script type="text/x-red" data-help-name="e-mail">
 | |
|     <p>Sends the <code>msg.payload</code> as an email, with a subject of <code>msg.topic</code>.</p>
 | |
|     <p>The default message recipient can be configured in the node, if it is left
 | |
|     blank it should be set using the <code>msg.to</code> property of the incoming message.</p>
 | |
|     <p>The payload can be html format.</p>
 | |
|     <p>If the payload is a binary buffer then it will be converted to an attachment.
 | |
|     The filename should be set using <code>msg.filename</code>. Optionally <code>msg.description</code> can be added for the body text.</p>
 | |
|     <p>Alternatively you may provide <code>msg.attachments</code> which should contain an array of one or
 | |
|     more attachments in <a href="https://www.npmjs.com/package/nodemailer#attachments" target="_new">nodemailer</a> format.</p>
 | |
| </script>
 | |
| 
 | |
| <script type="text/javascript">
 | |
| (function() {
 | |
|     RED.nodes.registerType('e-mail',{
 | |
|         category: 'social-output',
 | |
|         color:"#c7e9c0",
 | |
|         defaults: {
 | |
|             server: {value:"smtp.gmail.com",required:true},
 | |
|             port: {value:"465",required:true},
 | |
|             name: {value:""},
 | |
|             dname: {value:""}
 | |
|         },
 | |
|         credentials: {
 | |
|             userid: {type:"text"},
 | |
|             password: {type: "password"},
 | |
|             global: { type:"boolean"}
 | |
|         },
 | |
|         inputs:1,
 | |
|         outputs:0,
 | |
|         icon: "envelope.png",
 | |
|         align: "right",
 | |
|         label: function() {
 | |
|             return this.dname||this.name||"email";
 | |
|         },
 | |
|         labelStyle: function() {
 | |
|             return (this.dname||!this.topic)?"node_label_italic":"";
 | |
|         },
 | |
|         oneditprepare: function() {
 | |
|             if (this.credentials.global) {
 | |
|                 $('#node-tip').show();
 | |
|             } else {
 | |
|                 $('#node-tip').hide();
 | |
|             }
 | |
|         }
 | |
|     });
 | |
| })();
 | |
| </script>
 | |
| 
 | |
| 
 | |
| <script type="text/x-red" data-template-name="e-mail in">
 | |
|     <div class="form-row node-input-repeat">
 | |
|         <label for="node-input-repeat"><i class="fa fa-repeat"></i> <span data-i18n="email.label.repeat"></span></label>
 | |
|         <input type="text" id="node-input-repeat" style="width: 80px"> <span data-i18n="email.label.seconds">seconds</span>
 | |
|     </div>
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-server"><i class="fa fa-globe"></i> <span data-i18n="email.label.server"></span></label>
 | |
|         <input type="text" id="node-input-server" placeholder="imap.gmail.com">
 | |
|     </div>
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-port"><i class="fa fa-random"></i> <span data-i18n="email.label.port"></span></label>
 | |
|         <input type="text" id="node-input-port" placeholder="993">
 | |
|     </div>
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-userid"><i class="fa fa-user"></i> <span data-i18n="email.label.userid"></span></label>
 | |
|         <input type="text" id="node-input-userid">
 | |
|     </div>
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-password"><i class="fa fa-lock"></i> <span data-i18n="email.label.password"></span></label>
 | |
|         <input type="password" id="node-input-password">
 | |
|     </div>
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-box"><i class="fa fa-inbox"></i> <span data-i18n="email.label.folder"></span></label>
 | |
|         <input type="text" id="node-input-box">
 | |
|     </div>
 | |
|     <br/>
 | |
|     <div class="form-row">
 | |
|         <label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="node-red:common.label.name"></span></label>
 | |
|         <input type="text" id="node-input-name" data-i18n="[placeholder]node-red:common.label.name">
 | |
|     </div>
 | |
|     <div class="form-tips" id="node-tip"><span data-i18n="[html]email.tip.cred"></span></div>
 | |
|     <div id="node-input-tip" class="form-tips"><span data-i18n="[html]email.tip.recent"></span></div>
 | |
| </script>
 | |
| 
 | |
| <script type="text/x-red" data-help-name="e-mail in">
 | |
|     <p>Repeatedly gets a <b>single email</b> from an IMAP server and forwards on as a msg if not already seen.</p>
 | |
|     <p>The subject is loaded into <code>msg.topic</code> and <code>msg.payload</code> is the plain text body.
 | |
|        If there is text/html then that is returned in <code>msg.html</code>. <code>msg.from</code> and <code>msg.date</code> are also set if you need them.</p>
 | |
|     <p>Additionally <code>msg.header</code> contains the complete header object including
 | |
|     <i>to</i>, <i>cc</i> and other potentially useful properties.</p>
 | |
|     <p>Uses the imap module.</p>
 | |
|     <p><b>Note:</b> this node <i>only</i> gets the most recent single email from the inbox, so set the repeat (polling) time appropriately.</p>
 | |
| </script>
 | |
| 
 | |
| <script type="text/javascript">
 | |
| (function() {
 | |
|     RED.nodes.registerType('e-mail in',{
 | |
|         category: 'social-input',
 | |
|         color:"#c7e9c0",
 | |
|         defaults: {
 | |
|             name: {value:""},
 | |
|             server: {value:"imap.gmail.com",required:true},
 | |
|             port: {value:"993",required:true},
 | |
|             box: {value:"INBOX"},
 | |
|             repeat: {value:"300",required:true}
 | |
|         },
 | |
|         credentials: {
 | |
|             userid: {type:"text"},
 | |
|             password: {type: "password"},
 | |
|             global: { type:"boolean"}
 | |
|         },
 | |
|         inputs:0,
 | |
|         outputs:1,
 | |
|         icon: "envelope.png",
 | |
|         label: function() {
 | |
|             return this.name||"email";
 | |
|         },
 | |
|         labelStyle: function() {
 | |
|             return (this.name||!this.topic)?"node_label_italic":"";
 | |
|         },
 | |
|         oneditprepare: function() {
 | |
|             if (this.credentials.global) {
 | |
|                 $('#node-tip').show();
 | |
|             } else {
 | |
|                 $('#node-tip').hide();
 | |
|             }
 | |
|             if (typeof this.box === 'undefined') {
 | |
|                 $("#node-input-box").val("INBOX");
 | |
|                 this.box = "INBOX";
 | |
|             }
 | |
|         }
 | |
|     });
 | |
| })();
 | |
| </script>
 |