终身会员
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Better Code, Better Life
月白风清
博客园
首页
新随笔
联系
管理
订阅
利用outlook发邮件
Code
using
System;
using
Microsoft.Office.Interop.Outlook;
namespace
GMService {
class
Program {
static
void
Main() {
Application app
=
new
Application();
NameSpace ns
=
app.GetNamespace(
"
mapi
"
);
ns.Logon(
"
jim
"
,
"
password
"
,
false
,
true
);
MailItem message
=
(MailItem) app.CreateItem(OlItemType.olMailItem);
message.To
=
"
some_man@hotmail.com
"
;
message.Subject
=
"
A simple test message
"
;
message.Body
=
"
This is a test. It should work
"
;
message.Send();
ns.Logoff();
Console.Read();
}
}
}
posted @
2009-06-05 12:44
飞扬跋扈
阅读(
198
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
公告