Hello All,
I have developed a web Application using Business connector. That contain a functionality of Sales order insertion. Now i want to developed a such a functionality like once sales order inserted it send mail to Administrator that sales order has been created or in between any error occur during insertion it send mail that Insertion not done successfully like.
Now i don’t want to use sysInetMail class. I have done this using following:
Bcn.AxaptaObject axSysINetMail = ax.CreateAxaptaObject(“SysINetMail”);
axSysINetMail.Call(“sendMail","Axapta@dc.com”,“Sales Order Created”,“Sales Order created Successfully”,false);
But this code need outlook setting on Axapta server. I don’t want to send mail using outlook configuration. Is there any other method that can i implement in my web Application so that Outlook configuration not needed.
Any help will be a highly appreciated.
Thanks.