Источник:
http://www.axaptapedia.com/SysEmailBatch
==============
Summary: Cat
The '''SysEmailBatch''' class is used for sending emails from Axapta.
SysEmailBatch mailer;
mailer = SysEMailBatch::construct();
mailer.parmPriority(emailPriority::Normal);
mailer.parmSenderAddr("Sender@mail.com");
mailer.parmSendername("Your name");
mailer.parmEmailAddr("receiver@mail.com");
mailer.parmEmailName("Receiver name");
mailer.parmSubject(subject);
mailer.parmMessageBody(msgBody);
mailer.run();
==Security==
The Administration Daily security key (AdminDaily) must be set to at least Read Only. There is no need to give access to the sub-keys.
[[Category:Class development]]
Источник:
http://www.axaptapedia.com/SysEmailBatch