Infopath脚本发送邮件

function createEmail() 


// Create a new message and fill all its fields 
var iMsg = new ActiveXObject("CDO.Message"); 
iMsg.To 
= "ee@tt.com"
iMsg.From 
= "aa@tt.com"
iMsg.Subject 
= "test subject"
iMsg.TextBody 
= "test body"

// Set SMTP server 

iMsg.Configuration.Fields(
"http://schemas.microsoft.com/cdo/configuration/smtpserver"= "192.168.68.1"
// Use the SMTP over the netowrk for sending method 

iMsg.Configuration.Fields(
"http://schemas.microsoft.com/cdo/configuration/sendusing"= 2
// Make persistent 
iMsg.Configuration.Fields.Update(); 

// Send the message 
iMsg.Send(); 

}
 
posted @ 2005-01-27 17:55  嘻哈  阅读(1162)  评论(1编辑  收藏  举报