UtilMailMailTo(String, String, String) Method
Runs the default mail client to send an email with the specified parameters.
Namespace: DevCase.Core.Networking.MailingAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static void MailTo(
string[] addresses,
string subject,
string body
)
Public Shared Sub MailTo (
addresses As String(),
subject As String,
body As String
)
Dim addresses As String()
Dim subject As String
Dim body As String
UtilMail.MailTo(addresses, subject, body)
public:
static void MailTo(
array<String^>^ addresses,
String^ subject,
String^ body
)
static member MailTo :
addresses : string[] *
subject : string *
body : string -> unit
No code example is currently available or this language may not be supported.
Parameters
- addresses String
-
The mail addresses.
- subject String
-
The subject of the email.
- body String
-
The body content of the email.
This is a code example.
No code example is currently available or this language may not be supported.
MailTo(mailAddresses:={"Name1@Server1.com", "Name2@Server2.com"},
subject:="A gift for you!",
body:="Hello World!")
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.