|
请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!
您需要 登录 才可以下载或查看,没有账号?注册
x
Technique
2 P; I! {8 v7 M2 q; T$ l8 mUse the CCO.Email object to send email messages.
; |8 w- x" {+ k7 TC# & j; S# b+ T, P: n8 I
System.Web.Mail.MailMessage email = new System.Web.Mail.MailMessage(); . k8 y, A4 f8 d$ m4 h( I' Q; n' H8 C
email.From = fromEmail; 9 g$ ~! I& h, ^. w5 L) l* m
email.To = toEmail; O9 P: e8 k S) p8 H- f5 t5 A
email.Subject = subject; / g8 b2 s3 Z4 L3 r. P3 k
email.Body = body;
9 u1 _* P& \% U/ E9 S- Y4 PCCO.Email.setup_smtpmail_server_and_send(email); 0 X1 B, r6 \% P- F/ R/ f1 j
0 `( R$ S5 e9 m// Alternatively use the SendEmailToIdentity
$ t3 V. Z" k# q4 {0 ] B// The first argument is the Identity name to send the email message.
' q5 ^: b5 J) [9 z" |- P( I; _// The second argument is the subject text. % h+ A/ M2 X5 Y- v# }8 i
// The third argument is the email body text.
p ^; l$ z; I- i5 O0 i9 T. y// The last argument is a user login name as the sender and
1 N9 h" d& ~: W, u: _// if blank will use the logged in user name and G7 {6 W) U* A( r5 @7 A& V
// that User Item must have an email address as well.
0 ?0 J# g) N, P: @* A6 }2 a, l3 ?CCO.Email.SendEmailToIdentity(ref identity, ref subject, ref body, ref user); 6 p: J$ \6 \9 @3 k7 Y$ _5 F8 G
return this.newInnovator().newResult("ok"); 7 X. ~: g: r6 a/ @$ @
VB.Net 7 [" u. z0 l+ V+ V4 C( N% ?$ P0 L
Dim email = New System.Web.Mail.MailMessage()
' @2 W5 w$ p6 Z8 l Memail.From = fromEmail . N$ w5 ^. u4 c# d$ j+ b* N) x
email.To = toEmail 7 A( a! K& D7 Z
email.Subject = subject 6 x; r; b- r+ `) G/ z* M/ {
email.Body = body 7 c" k2 R. k" w. U* r9 P
CCO.Email.setup_smtpmail_server_and_send(email)
8 o1 `$ e, ~3 N+ p $ x2 G* j' D, L @4 `8 I
' Alternatively use the SendEmailToIdentity
" n, e( R5 }" }* K' The first argument Is the Identity name To send the email message.
: ~4 k0 S$ u: n1 ~" @' The second argument Is the subject text.
3 m3 Y. R/ X2 s5 E8 q- y' The third argument Is the email body text.
; X0 u% ?' s$ F" N7 v' The last argument Is a user login name As the sender And
+ V5 v9 t O/ [8 M$ g9 f; r2 ~$ a' If blank will use the logged In user name And
7 t$ v) I* j8 f* r' that User Item must have an email address As well. 8 ^, G+ W2 V9 Y, I, c
CCO.Email.SendEmailToIdentity(identity,subject,body,user)
: [ I( u4 m2 Z% P4 e$ R* i9 @8 O4 z3 R5 B4 S8 [
|
|