Avatar

Level 6

Here is what I do....I will use regular button instead of "Email submit".

Then in Click event of the button use following JavaScript...

var sub

sub = "Subject Text"

var ebody

ebody = "email text that goes on body"

event.target.submitForm({cURL

:"mailto:email1@domain.com,email2@domain.com?cc=email3@domain.com&subject="+sub+"&body="+ebody,cSubmitAs:"PDF",cCharset:"utf-8"});

//you could replace PDF with XML will only send data instead of form.

Good Luck,