Sending email via Axapta - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T10:42:20Z http://stackoverflow.com/feeds/question/579816 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/579816/sending-email-via-axapta 0 Sending email via Axapta Namadgi http://stackoverflow.com/users/0 2009-02-23T23:15:45Z 2010-01-03T11:00:03Z <p>I've managed to get my Axapta 3.0 to send email via the printjobSettings class. However, there doesn't appear to be anywhere I can create a body for my email. Currently I can send email with an attachment but I'd like to include some text to provide some context for the attachment for the recipient.</p> <p>How can I accomplish this?</p> http://stackoverflow.com/questions/579816/sending-email-via-axapta/580447#580447 0 Answer by Jay Hofacker for Sending email via Axapta Jay Hofacker http://stackoverflow.com/users/535 2009-02-24T04:12:58Z 2009-02-24T04:12:58Z <p>The class printJobSettings has a method mailSubject for setting the subject of the email that gets generated, but there is no method for setting the body of the message. printJobSettings is a kernel class, so you can't modify it.</p> <p>To actually send the email, the kernel passes a printJobSettings object to the method Info.ReportSendMail, which you can modify. So as a work around, pack your subject and body together in the subject, then unpack them in ReportSendMail.</p> <p>In your report:</p> <pre><code>printJobSettings.mailSubject(msgSubject + '|' + msgBody); </code></pre> <p>In Info.ReportSendMail:</p> <pre><code>subjectAndBody=printJobSettings.mailSubject(); delimiterPos=strFind(subjectAndBody,'|',1,strlen(subjectAndBody)); if(delimiterPos&gt;0) { msgSubject=subStr(subjectAndBody,1,delimiterPos-1); msgBody=subStr(subjectAndBody,delimiterPos+1,strlen(subjectAndBody)-delimiterPos); } else { msgSubject=subjectAndBody; msgBody='Axapta Report'; } </code></pre> http://stackoverflow.com/questions/579816/sending-email-via-axapta/580481#580481 0 Answer by namadgi for Sending email via Axapta namadgi http://stackoverflow.com/users/0 2009-02-24T04:30:50Z 2009-02-24T04:30:50Z <p>Jay, thanks very much for your reply .. most appreciated! </p>