Emailing reports

jdemejdeme Member Posts: 12
edited 2007-01-10 in Dynamics AX
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

Comments

  • MikerMiker Member Posts: 105
    Hi.
    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’ );
    going to Europe
Sign In or Register to comment.