Posts

Showing posts with the label Email Sending

Send email in AX 2012 using X++

Image
Hi Readers, Today, in this post we are going to share a X++ code to send email in AX 2012 using X++. // Create By: Chirag Gupta // Created Date: 2-Apr-2020 // Summary: This job will be used to send an email using AX 2012. static void PKA_TestEmail(Args _args) {     // Set these variables.     str                                   sender = 'axsupport@domain_name.com';     str                                   recipient = 'test_emailTo@domain_name.com';     str                                   cc = 'test_emailCC@domain_name.com';     str                                ...