|
请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!
您需要 登录 才可以下载或查看,没有账号?注册
x
Technique ( G- L+ `) C3 _) t/ X
Use the CCO.Email object to send email messages.
, i. i+ h1 f5 NC# ) `: U( @( w v' R9 z
System.Web.Mail.MailMessage email = new System.Web.Mail.MailMessage();
% \4 Y+ [ E" [- w3 E: xemail.From = fromEmail;
: P$ @1 ^- x* Xemail.To = toEmail; ) M. r; y3 s1 F, P3 n) V) C8 [
email.Subject = subject; . w1 C* Z/ I; @; Z. D
email.Body = body;
9 m- B" i. w2 ` l; dCCO.Email.setup_smtpmail_server_and_send(email);
! d& N! d6 J8 p * g G# Z9 V3 b' P! r$ ], \, J& D
// Alternatively use the SendEmailToIdentity % |7 O2 p- s! C7 c5 O. G- o' _: d
// The first argument is the Identity name to send the email message. % G& n G- W9 f1 S9 k2 p( Q9 ]
// The second argument is the subject text.
* c& Z& Y3 G3 |6 J. T) H// The third argument is the email body text. 4 a0 n/ k; I8 U5 K
// The last argument is a user login name as the sender and $ f0 G1 B% O2 L5 _. r0 ?
// if blank will use the logged in user name and ( P) H* u9 u4 J* K
// that User Item must have an email address as well. 4 [' k7 ^" u1 m
CCO.Email.SendEmailToIdentity(ref identity, ref subject, ref body, ref user); ; T. Z9 F" u) d. \# b. ?& x
return this.newInnovator().newResult("ok"); D! `1 U2 V" N% f, g3 o& w; d, `0 m3 a- J
VB.Net
1 j X- m( M# K5 m1 Z! S4 F" [Dim email = New System.Web.Mail.MailMessage() ; c* H4 U( t* ~' K
email.From = fromEmail ( E) H4 i- b3 T, t' H
email.To = toEmail
: V. Q) J+ q( b1 ? S8 g* W) Cemail.Subject = subject
" ^9 D. U0 [) \0 q. w b4 ]7 n/ memail.Body = body
5 T% w% S' G: @$ o7 d- TCCO.Email.setup_smtpmail_server_and_send(email)
. J. I/ _5 N: H9 c 1 x6 D0 ^& B# n& u/ B' w
' Alternatively use the SendEmailToIdentity R$ C2 l# Z7 I/ w. T( K" x: |$ m
' The first argument Is the Identity name To send the email message. 9 [0 k0 G; x6 J2 h, |
' The second argument Is the subject text.
- t8 \9 V( b! S" n6 V; ?5 g' The third argument Is the email body text. 1 \; F' ^/ C2 ~' }2 z* W; @
' The last argument Is a user login name As the sender And , M1 V7 F% P1 ]* y. w+ D3 R7 h/ g
' If blank will use the logged In user name And
, p4 D6 {$ c4 i' that User Item must have an email address As well.
' T; J9 h: x! H" mCCO.Email.SendEmailToIdentity(identity,subject,body,user)
' S# K7 U1 B7 ^* S* E
# V; W* i$ V U, e. c- b. { |
|