Need help on email notification formatting issue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2023 09:57 AM
Hello,
I have been struggling with the email notification format and hope someone can provide some assistance.
The notification contains Start and End text along with email scripts.
However, when it prints, the dates are showing below the 'Start' and 'End' text. I couldn't figure out why it does that. Please help. Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2023 10:07 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2023 10:53 AM
Thank you for helping. Please let me know where I need to enter the break in the following code?
//Print Start Date
var requiredDate = dayName + ', ' + monthName + ' ' + day + '. ' + year + ' at ' + strTime;
template.print(requiredDate);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2023 10:56 AM
Hi @Keang ,
// Print Start Date
var requiredDate = dayName + ', ' + monthName + ' ' + day + '. ' + year + ' at ' + strTime;
template.print(requiredDate + '<br>');
Thanks,
Anand
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2023 11:01 AM
This is the HTML code:
<p style="margin: 0in; font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-size: 12pt; font-family: Lato, sans-serif; color: black;">Start:</span><strong><span style="font-size: 12pt; font-family: Lato, sans-serif; color: black;"> ${mail_script:IT_Notification_startDate}</span></strong></p>
Please help. Thank you