Tuesday, October 12, 2010

Send Email in AX 4.0

In this article, I am going to demonstrate different email techniques that can be used in AX 4.0. Following classes can be used to send an email


* Mapi and its related classes
* SysMailer
* SysInetMail
* SysEmailBatch
* SmmOutlookEmail

MAPI technique:

Following code demonstrates the usage of mapi class for sending email. It uses outlook to send mail.

static void emailThruMapi(Args _args)
{
MapiEx mapiEx;
MapiExMail mapiExMail;
boolean mapiInitialised;
COM outlook;
COM item;
COM outlookNameSpace;
COM folder;
COM attachments;
str storeId;
str entryId;

#define.outlookapplication('Outlook.Application')
#define.mapi('Mapi')
#smmMSOutlook2002ObjectModelConstants
#define.htmlText('Hi There')
;

outlook = new COM (#outlookapplication);
outlookNameSpace = outlook.getNameSpace(#mapi);
outlookNameSpace.logon();

folder = outlookNameSpace.getDefaultFolder(#olFolderInbox);
item = outlook.createItem(#olMailItem);
storeId = folder.storeId();

mapiEx = new MapiEx();

if(mapiEx && mapiEx.mapiInitialised())
{
mapiInitialised = true;
if (!mapiEx.logon("","",0) || !mapiEx.openMessageStore(storeId))
{
mapiInitialised = false;
mapiEx.logout();
mapiEx.finalize();
}

//To send mail in HTML format
item.bodyFormat(#olFormatHTML);
item.htmlBody(#htmlText);

//To send mail in plain text format
//item.body('Hi There');

item.subject('Test mail');

//----Attachements-------------------
attachments = item.attachments();
attachments.add('E:\\Test\\4000.pdf', 1, 1, '4000.pdf');

item.saveSentMessageFolder(outlookNameSpace.getDefaultFolder(#olFolderSentMail));
item.save();
entryId = item.entryId();

mapiExMail = mapiEx.getMailFromEntryId(entryId);
if (!mapiExMail)
{
mapiInitialised = false;
mapiEx.logout();
mapiEx.finalize();
}
}

if(item)
{
if (mapiInitialised && mapiExMail)
{
//TO
mapiExMail.addRecipient('avnish.chandra@gmail.com', "", #olTo);
//CC
mapiExMail.addRecipient('avnish.chandra@gmail.com',"",#olCC);
//BCC
mapiExMail.addRecipient('avnish.chandra@gmail.com',"",#olBCC);

try
{
mapiExMail.save();
mapiExMail.close();
mapiExMail.finalize();
item = outlookNameSpace.getItemFromID(strupr(entryId));

//This will display the mail item
//item.display();

//This will directly send the mail without poping the mail window
item.send();
}
catch
{
if (mapiInitialised)
{
mapiEx.logout();
mapiEx.finalize();
}

// An error occured sending mail from outlook.
throw error("@SYS97460");
}
}
}
}

SysMailer:


In the following code you can see how to use SysMailer class for sending mails. To use SysMailer class you need to set Relay server or computer name, user name and password in Administration --> Setup --> Email parameters form. This class internally uses CDO.Message dll for communication purposes. Please note in AX 3.0 SysMailer uses Dundas.Mailer dll for communication.

static void emailThruSysMailer(Args _args)
{
SysMailer mailer = new SysMailer();
SysEmailParameters parameters = SysEmailParameters::find();
;

if (parameters.SMTPRelayServerName)
{
mailer.SMTPRelayServer(parameters.SMTPRelayServerName,
parameters.SMTPPortNumber,
parameters.SMTPUserName,
SysEmailParameters::password(),
parameters.NTLM);
}
else
{
mailer.SMTPRelayServer(parameters.SMTPServerIPAddress,
parameters.SMTPPortNumber,
parameters.SMTPUserName,
SysEmailParameters::password(),
parameters.NTLM);
}

mailer.fromAddress('avnish.chandra@gmail.com');
mailer.tos().appendAddress('avnish.chandra@gmail.com');
mailer.body('hi');
mailer.sendMail();
}

SysInetMail:

SysInetMail internally uses Mapi framework only. But to use SysInetMail one has to setup email templates from Basic --> Setup --> Email templates. SysInetMail will automatically pick sender id, subject, sender name, email text etc. from the email template that you provide while sending from SysInetMail. If you provide a full email address and not the id from Email templates table then also mail will be sent but in that case you need to provide the details yourself.

static void emailThruSysInetMail(Args _args)
{
SysInetMail mail = new SysInetMail();
;

//To send to an email address directly
mail.sendMailAttach('avnish.chandra@gmail.com', 'avnish.chandra@gmail.com', 'Test e-mail', 'Hi ', false, 'C:\\Test\\custStmt.pdf');

//To use an email template to send mail
SysInetMail::sendEMail('Alerts', 'en-us', 'avnish.chandra@gmail.com');
}

SysEmailBatch:


SysEmailBatch internally uses SysMailer class and is used to send emails in batch. That is this class is batchable. Here is a small example for the class

static void emailThruSysEmailBatch(Args _args)
{
SysEmailBatch batch = new SysEmailBatch();
;

batch.parmSenderAddr('avnish.chandra@gmail.com');
batch.parmEmailAddr('avnish.chandra@gmail.com');
batch.parmMessageBody('Hello');
batch.parmSubject('Test email');
batch.run();
}

SmmOutlookEmail:

This class internally uses Mapi class and is extensively used in HRM module. One feature of this class is that we can specify email groups and it can send mails to all the members defined under this email group. Here is a sample code

static void emailThruSmmOutlookEmail(Args _args)
{
SmmOutlookEmail smmOutlookEmail = new SmmOutlookEmail();
;

if (smmOutlookEmail.createMailItem())
{
smmOutlookEmail.addEMailRecipient('avnish.chandra@gmail.com');
smmOutlookEmail.addSubject('Test email');
smmOutlookEmail.isHTML(true);
smmOutlookEmail.addBodyText('Hi How are you?');
smmOutlookEmail.sendEMail(smmSaveCopyOfEmail::No);
}
}

1 comment:

Email Templates said...

Marketers choose their designs to precisely suit the their promotional needs more efficiently. With email templates, marketers can also customize and personalize its features.