Data update
This commit is contained in:
parent
0df55f9f24
commit
aec8ed51b6
1045 changed files with 18889 additions and 2777 deletions
22
Task/Send-email/FreeBASIC/send-email-3.basic
Normal file
22
Task/Send-email/FreeBASIC/send-email-3.basic
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
'VBScript code:
|
||||
Function EnviarCorreo()
|
||||
With CreateObject("CDO.Message")
|
||||
.Subject = "Mail subject"
|
||||
.From = "your_mail@domain.com"
|
||||
.To = "recipient@domain.com"
|
||||
.TextBody = "This is the body of the email."
|
||||
|
||||
.Configuration.Fields.Item _
|
||||
("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
|
||||
|
||||
.Configuration.Fields.Item _
|
||||
("http://schemas.microsoft.com/cdo/configuration/smtpserver") = _
|
||||
"smtp.dominio.com"
|
||||
|
||||
.Configuration.Fields.Item _
|
||||
("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
|
||||
|
||||
.Configuration.Fields.Update
|
||||
.Send
|
||||
End With
|
||||
End Function
|
||||
Loading…
Add table
Add a link
Reference in a new issue