Expand my Community achievements bar.

E-mail subject

Avatar

Level 3

I have Email button and one two drop down list.

I need when is chosed something in DropDown to write that in subject.

Email is always the same.

Thank you

2 Replies

Avatar

Level 10

var myDoc = event.target;

myDoc.mailDoc({
        bUI
: false,
        cTo
: 'receiver@domain.com', // Replace with actual receiver mail address.
        cSubject
: subject,
        cSubmitAs
: "PDF"
   
});