Hi there!
I am curious about how to compose an email within ElectroNeek. How would I allow for carriage returns and new lines inside of the Calculate a Value field? I tried the following ways:
Option #1:
‘The following application was not submitted due to the NJ WOTC system requiring a POA:’ + ‘\r’ + ‘\n’ + 'FEIN: ’ + EMPLOYER_FEIN + ‘\r’ + ‘\n’ + 'REC NO: ’ + REC_NO + ‘\r’ + ‘\n’ + 'Employee First Name: ’ + EMP_FIRST_NAME + ‘\r’ + ‘\n’ + 'Employee Last Name: ’ + ‘\r’ + ‘\n’ + EMP_LAST_NAME
Option #2:
‘The following application was not submitted due to the NJ WOTC system requiring a POA:’ + ‘\r’ + ‘\n’ + 'FEIN: ’ + EMPLOYER_FEIN + ‘\r’ + ‘\n’ + 'REC NO: ’ + REC_NO + ‘\r’ + ‘\n’ + 'Employee First Name: ’ + EMP_FIRST_NAME + ‘\r’ + ‘\n’ + 'Employee Last Name: ’ + ‘\r’ + ‘\n’ + EMP_LAST_NAME
Option #3:
‘The following application was not submitted due to the NJ WOTC system requiring a POA:’ + \r + \n + 'FEIN: ’ + EMPLOYER_FEIN + \r + \n + 'REC NO: ’ + REC_NO + \r + \n + 'Employee First Name: ’ + EMP_FIRST_NAME + \r + \n + 'Employee Last Name: ’ + \r + \n + EMP_LAST_NAME
Neither of these are working for me. Any advice? What am I doing wrong? Thank you in advance!