Mail Body Content

RS8
Member Posts: 121
Hi,
In Nav4 while sending mail i want to insert multiple line in Body content, i am using below syntax. how can i able to insert lines as shown, can any one suggest me.
{ MailSent := cSendmail.NewMessage
(ToName,CCName,Subject,Body,AttachFileName,OpenDialog) }
{ Mail Body
MR,
Greetings from ABC..
Thank you....
}
In Nav4 while sending mail i want to insert multiple line in Body content, i am using below syntax. how can i able to insert lines as shown, can any one suggest me.
{ MailSent := cSendmail.NewMessage
(ToName,CCName,Subject,Body,AttachFileName,OpenDialog) }
{ Mail Body
MR,
Greetings from ABC..
Thank you....
}
0
Answers
-
Try this : add 2 char type variables, called CR and LF.
CR := 13 ; LF := 10 ; MailBody := 'Mr. ' + CR + LF + CR + LF + 'Greetings from ABC....' + CR + LF + CR + LF + 'Thank you...' ;
note that you don't need to use the linebreaks like i did in the sample code; It just makes it a bit easier to read0 -
Variable MailBody is Text, so it gives error....0
-
oh, sorry.....i tend to forget that one thing..
Make a new text variable (length 2) called CRLF.CRLF := format(CR) + format(LF) ;
replace all the CR + LF in my previous code with CRLF0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions