In Dynamics Ax 2012, there is form for configuration parameters. There parameters will further use in sending email. Following is the path of Step.
System Administrator è step upè Email parameters
These value stored in Dynamics ax 2012 table SysEmailParameters you can get these values by querying on this table using X++ code.
Consider following X++ job which read values form SysEmailParameters and send email using SysMailer api.
static void SendEmail(Args _args)
{
SysEmailParameters...(read more)
↧