Skip to main content
Known Participant
August 12, 2024
Answered

Changing outgoing email messages

  • August 12, 2024
  • 2 replies
  • 504 views

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?

This topic has been closed for replies.
Correct answer try67

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"});

2 replies

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
August 12, 2024

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"});
PDF Automation Station
Community Expert
Community Expert
August 12, 2024

What is your script?