public static void SendMailText(
SmtpClient smtpClient,
NetworkCredential credential,
string subject,
string body,
MailAddress address
)
Public Shared Sub SendMailText (
smtpClient As SmtpClient,
credential As NetworkCredential,
subject As String,
body As String,
address As MailAddress
)
Dim smtpClient As SmtpClient
Dim credential As NetworkCredential
Dim subject As String
Dim body As String
Dim address As MailAddress
UtilMail.SendMailText(smtpClient, credential,
subject, body, address)
public:
static void SendMailText(
SmtpClient^ smtpClient,
NetworkCredential^ credential,
String^ subject,
String^ body,
MailAddress^ address
)
static member SendMailText :
smtpClient : SmtpClient *
credential : NetworkCredential *
subject : string *
body : string *
address : MailAddress -> unit
No code example is currently available or this language may not be supported.
[Missing <param name="smtpClient"/> documentation for "M:DevCase.Core.Networking.Mailing.UtilMail.SendMailText(System.Net.Mail.SmtpClient,System.Net.NetworkCredential,System.String,System.String,System.Net.Mail.MailAddress)"]
No code example is currently available or this language may not be supported.
Dim credential As New NetworkCredential("Username@Hotmail.com", "Password")
SendMailText(DevCase.Core.NET.SmtpClients.MicrosoftLiveSmtpClient, credential, "Email Subject", "Message Body", New MailAddress("address@domain.com"))
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.