Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Changing outgoing email messages

Explorer ,
Aug 12, 2024 Aug 12, 2024

Hello,

 

I've created a form with a Submit form action. My boss wants to change the default wording on the email sent when someone uses the Submit form button. Is there a script that will help me do that?

TOPICS
How to , PDF , PDF forms
279
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
1 ACCEPTED SOLUTION
Community Expert ,
Aug 12, 2024 Aug 12, 2024
LATEST

You can use something like this (note "\n" is used to insert line-breaks in the email body):

 

this.mailDoc({cTo: "boss@company.com", cSubject: "Email subject line", cMsg: "Email main body goes here.\nNew line of message body.\n\nThank you"});

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 12, 2024 Aug 12, 2024

What is your script?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 12, 2024 Aug 12, 2024
LATEST

You can use something like this (note "\n" is used to insert line-breaks in the email body):

 

this.mailDoc({cTo: "boss@company.com", cSubject: "Email subject line", cMsg: "Email main body goes here.\nNew line of message body.\n\nThank you"});
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines