Показать сообщение отдельно
Старый 17.12.2009, 20:05   #1  
Blog bot is offline
Blog bot
Участник
 
25,644 / 848 (80) +++++++
Регистрация: 28.10.2006
hariprasadp: Send email through Dynamics AX -
Источник: http://hariprasadp.spaces.live.com/B...B91F!207.entry
==============
//--HariPattela--Dynamics AX send email through Dynamics AX
server static void SendEmail_CDO(Args _args)
{
    // Declare the Com Object Variable.
    COM CDOMessage = null;
    COM CDOConf = null;
 
    // Instantiate the Com object CDOSYS.DLL (IMessage Interface)
    CDOMessage = new COM("cdo.message");
 
    // Set the To Line
    CDOMessage.To('prasad@Test.com.my');
    // CDOMessage.To('ToAddr@xxxxxx.com');
    // Set From Line

    CDOMessage.From('prasad@Test.com.my');
    // Regular Text Body Format (Non-HTML Body)
    CDOMEssage.TextBody('Body of Message');

    // Message Subject
    CDOMessage.Subject('Test Alert Mail');
 
    // Send Message
    CDOMessage.Send();
    CDOMessage = null;
}



==============
Источник: http://hariprasadp.spaces.live.com/B...B91F!207.entry
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору.