public static void SendMailHtml(
SmtpClient smtpClient,
NetworkCredential credential,
string subject,
string body,
string address,
params Attachment[] attachments
)
Public Shared Sub SendMailHtml (
smtpClient As SmtpClient,
credential As NetworkCredential,
subject As String,
body As String,
address As String,
ParamArray attachments As Attachment()
)
Dim smtpClient As SmtpClient
Dim credential As NetworkCredential
Dim subject As String
Dim body As String
Dim address As String
Dim attachments As Attachment()
UtilMail.SendMailHtml(smtpClient, credential,
subject, body, address, attachments)
public:
static void SendMailHtml(
SmtpClient^ smtpClient,
NetworkCredential^ credential,
String^ subject,
String^ body,
String^ address,
... array<Attachment^>^ attachments
)
static member SendMailHtml :
smtpClient : SmtpClient *
credential : NetworkCredential *
subject : string *
body : string *
address : string *
attachments : Attachment[] -> 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.SendMailHtml(System.Net.Mail.SmtpClient,System.Net.NetworkCredential,System.String,System.String,System.String,System.Net.Mail.Attachment[])"]
No code example is currently available or this language may not be supported.
Dim credential As New NetworkCredential("Username@Hotmail.com", "Password")
SendMailHtml(DevCase.Core.NET.SmtpClients.MicrosoftLiveSmtpClient, credential, "Email Subject", "Message Body", "address@domain.com", New Attachment("C:\File.txt"))
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.