bip-pod-email
Advanced tools
Comparing version 0.3.2 to 0.3.3
@@ -68,11 +68,11 @@ { | ||
"type": "string", | ||
"description": "Message Subject" | ||
"description": "Subject" | ||
}, | ||
"body_html": { | ||
"type": "text", | ||
"description": "HTML Message Body" | ||
"description": "HTML Body" | ||
}, | ||
"body_text": { | ||
"type": "text", | ||
"description": "Text Message Body" | ||
"description": "Text Body" | ||
}, | ||
@@ -82,2 +82,10 @@ "reply_to": { | ||
"description": "Reply To" | ||
}, | ||
"in_reply_to" : { | ||
"type" : "string", | ||
"description" : "In Reply To" | ||
}, | ||
"references" : { | ||
"type" : "string", | ||
"description" : "References" | ||
} | ||
@@ -89,3 +97,5 @@ }, | ||
"body_text", | ||
"reply_to" | ||
"reply_to", | ||
"in_reply_to", | ||
"references" | ||
] | ||
@@ -92,0 +102,0 @@ }, |
{ | ||
"name": "bip-pod-email", | ||
"version": "0.3.2", | ||
"version": "0.3.3", | ||
"author": "Michael Pearson", | ||
@@ -5,0 +5,0 @@ "description": "Email Pod for Bipio", |
@@ -439,2 +439,10 @@ /** | ||
if (imports.in_reply_to) { | ||
mailOptions.inReplyTo = imports.in_reply_to; | ||
} | ||
if (imports.references) { | ||
mailOptions.references = imports.references; | ||
} | ||
var promises = [], | ||
@@ -441,0 +449,0 @@ deferred; |
62421
696