Skip to content

Commit 788a79b

Browse files
committed
Adjusting signature addition
1 parent 4eb19b4 commit 788a79b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

components/gmail/gmail.app.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -318,11 +318,11 @@ export default {
318318
}
319319
}
320320

321-
if (props.signature) {
322-
props.body += props.signature;
323-
}
324-
325321
if (props.bodyType === constants.BODY_TYPES.HTML) {
322+
if (props.signature) {
323+
props.body += props.signature;
324+
}
325+
326326
opts.html = props.body;
327327
} else {
328328
opts.text = props.body;

0 commit comments

Comments
 (0)