Advertisement
ramkesheoran

Send Mail From Outlook

Oct 20th, 2011
3,484
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XPP 0.41 KB | None | 0 0
  1. static void outlookEmail()
  2. {
  3.     SysINetMail             mail;
  4.     str                     mailBody;
  5.     email                _email,_ccemail,NewCC;
  6.     ;
  7.  
  8.     mailBody =  "Dear Sir, \n\n";
  9.  
  10.     mail=new SysINetMail() ;
  11.  
  12.     _email = "Gaurav.sharma@ilfstechnologies.com";
  13.     _ccemail = "Sanjay.jhamb@ilfstechnologies.com";
  14.  
  15.     mail.sendMailAttach(_email,_ccemail,"Subject Here",mailBody,false,"");
  16. }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement