Hi Experts
I just want to have a button to send email that include only the custom text which I have stored in the form already. Now I tried with Submit email button options I am able to do this only with attachment of the form.
Is there any other way to send mail just a plain text without any attachments. I am using LC Designer 8.
Thanks in advance
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
to send a plain mail you can use the app.mailMsg method.
app.mailMsg({
bUI: false,
cTo: 'a@b.com',
cCc: '',
cBcc: '',
cSubject: 'My mail',
cMsg: 'Hello,\n\nbla bla bla\n\nKind regards\nMe'
});
Views
Replies
Total Likes
Hi,
to send a plain mail you can use the app.mailMsg method.
app.mailMsg({
bUI: false,
cTo: 'a@b.com',
cCc: '',
cBcc: '',
cSubject: 'My mail',
cMsg: 'Hello,\n\nbla bla bla\n\nKind regards\nMe'
});
Views
Replies
Total Likes
Hi radzmar
it works perfect. Thanks a lot.
Views
Replies
Total Likes
Views
Likes
Replies