Hi Everyone,
I know how to code a button in my forms so that it sends the form as a PDF attachment in the email:
var mail;
mail = "mailto:somebody@happy.com" + "?subject=Something";
event.target.submitForm({
cURL: mail,
bEmpty: true,
cSubmitAs: "PDF",
cCharset: "utf-8"
});
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
I appreciate what you are trying to achieve, but I don't think that you will have much luck.
From what I see of the submitForm method there isn't a parameter for the email format.
Images in the form are stored as base64 format, so you would need to decode it first. In any case I don't think that you could pass it to the email.
Lastly I can't see how you could force the use of a particular signature. The form is basically passing over the process to the email client, which then completes the submit process.
Good luck,
Niall
Views
Replies
Total Likes
Hi,
I appreciate what you are trying to achieve, but I don't think that you will have much luck.
From what I see of the submitForm method there isn't a parameter for the email format.
Images in the form are stored as base64 format, so you would need to decode it first. In any case I don't think that you could pass it to the email.
Lastly I can't see how you could force the use of a particular signature. The form is basically passing over the process to the email client, which then completes the submit process.
Good luck,
Niall
Views
Replies
Total Likes