Hi experts
A question regarding sending an axapta report via email:
Using the standard way of opening a report and choosing as a print medium the email, what you get is an empty email(no body) and the actual report attached.
Is there a way to change that? For example, have the actual report as the body of the email?
Thanks!
jdeme
0
Comments
See the class exporting your mail and adjustments
For example, if you send mail through axapta client see SysEmailBatch and table
SysEmailParameters
sysEmailBatch = SysEmailBatch::construct();
sysEmailBatch.parmSendername( 'From me' );
sysEmailBatch.parmEmailAddr(CustTable::find(_custTable.AccountNum).Email);
sysEmailBatch.parmMessageBody( ‘Body of my letter’ );