Hi, In this post I will show some of the frequently used date expressions in pega. Before starting we will see some of the date subscripts used in date functions. For Ex: If date is = 05/March/2023 yyyy = Year => 2023 YYYY => 2023 MM = Month => 03 M=> 3 MMMM ===> March MMM ====> Mar dd = Date/day => 05 d ===> 5 1) pxFormatDateOnly(CurrentDateTime(),"yyyyMMdd","MM/dd/yyyy") Here, CurrentDateTime() = 20230618T025027.005 GMT CurrentDateTime() returns the current date and time. pxFormatDateOnly() = Format/reformat a Date Time string using a specified parameters. Output = 06/18/2023 { which is 18 June 2023} 2)...
Hi, In this blog we will see some of the OOTB email sending activities in pega. SendEmailNotification SendSimpleEmail SendEmailWithAttachments 1) SendEmailNotification This activity is present in @baseclass. Description = Sends Email Correspondence. This activity basically gathers all the parameters for email and passes them to send email function . From: It accepts email address as per Email Address specification defined in RFC with only lcoal part and domain seperated by @ To/CC/BCC : It accepts one or more email addresses separated by "," or ";".Email Address should adhere to internet email address specification as defined in RFC. It is recommended separating email addresses with "," when there are multiple email addresses. Please note the below limitation when email address contains display name with ";" in it. Semicolon is replaced by comma when message is delivered to the email server which might cause issues when display name is used in ...
Comments
Post a Comment