h**i 发帖数: 57 | 1 弱弱的问, 除了code,我还需要在server上做些东西吗? | r****y 发帖数: 26819 | 2 你得有个smtp server吧。
【在 h**i 的大作中提到】 : 弱弱的问, 除了code,我还需要在server上做些东西吗?
| t*****y 发帖数: 17 | 3 ' ### Send email
set ObjMail = Server.CreateObject("cdonts.newmail") 'Create the email
object
ObjMail.To = "X**[email protected]" 'Email you want to send to
ObjMail.Cc = "X**[email protected]" 'cc you want to send to
ObjMail.Subject = "XXXXXXXXX" 'the subject of the email message.
ObjMail.Body=bodyText 'This is the body of the email
ObjMail.BodyFormat = 0
ObjMail.Send 'Send the email
set ObjMail = nothing
【在 h**i 的大作中提到】 : 弱弱的问, 除了code,我还需要在server上做些东西吗?
|
|