Posts

Showing posts with the label add new line in confirmation message

How to add new line in google form confirmation message

Image
Confirmation messages are displayed after submitting the form / questions by the receiver. To add new line in the confirmation message, run the below script in the script editor. function   addLineBreaks () {    var   form  =  FormApp . getActiveForm ();        var   title  =  "Thanks for your submission. We will get back to you sooon" ;    form . setConfirmationMessage (  title . split ( ". " ). join ( "\n" ));    } For reference :