Найденные страницы с тегом smtpclient всего 158

Использование SmtpClient для отправления почты через SMTP сервер Яндекса с SSL / Хабр

Если вы используете Яндекс.Почту для домена, то скорее всего уже знаете что неделю назад с 16 сентября 2014 г. SMTP сервер Яндекса smtp.yandex.ru полностью перешел на SSL, о чем компания добросовестно...

SmtpClient - Время операции истекло – 1 Ответ

Если вы получаете исключение тайм-аута, то это означает, что SmtpClient не смог подключиться к... Вопрос по теме: c#, smtp.

Почему SMTP-почта не удаляется, когда это делает клиент? – 1 Ответ

Метод SmtpClient Send() не отвечает (и не должен) за удаление MailMessage (и связанных с ним... Вопрос по теме: c#.

указание адреса «Кому» в настройках почты SMTP в .NET – 2 Ответа

Нет, вы не можете указать свойство To в файле конфигурации. Вам необходимо будет установить его... Вопрос по теме: c#, .net, app-config, smtp, smtpclient.

"The function requested is not supported" exception when using SmtpClient in Azure role

"The function requested is not supported" exception when using SmtpClient in Azure role azure

"The function requested is not supported" exception when using SmtpClient in Azure role

"The function requested is not supported" exception when using SmtpClient in Azure role azure

ASP.NET - SmtpClient - Unable to connect to the remote server

ASP.NET - SmtpClient - Unable to connect to the remote server asp.net

SmtpClient sending without authentication

SmtpClient sending without authentication asp.net

Sending mail using SmtpClient in .net

Sending mail using SmtpClient in .net asp.net

How to enable SSL for SmtpClient in Web.config

How to enable SSL for SmtpClient in Web.config asp.net

Send HTML email via C# with SmtpClient

Send HTML email via C# with SmtpClient asp.net

Send HTML email via C# with SmtpClient

Send HTML email via C# with SmtpClient asp.net

[Solved] Confused with the SmtpClient.UseDefaultCredentials Property - Local Coder

In my MVC4 application, I'm using the SmtpClient to send out email via Gmail's smtp.gmail.com SMTP server. I've configured my Web.Config file with the following settings: <syste

[Solved] Multiple attachment file in email using C# - Local Coder

How to attach the multiple files in an email using c#. MailMessage mail = new MailMessage(); SmtpClient SmtpServer = new SmtpClient('smtp.gmail.com'); //ge

[Solved] Asp.net Email receive problem - Local Coder

I'm using MailMessage class and then sent mail to many recipients. My code is here. MailMessage msg = new MailMessage(); SmtpClient client = new SmtpClient('smtp.mysite.com'); cl

[Solved] NetworkCredential.Domain Property - Local Coder

MailAddress Sender = new MailAddress('SomeOne@yahoo.com', 'SomeOne', Encoding.UTF8); SmtpClient Client = new SmtpClient('smtp.mail.yahoo.com',465); Client.Credentials = new S

[Solved] MailSystem.NET subject encoding - Local Coder

I'm currently using MailSystem.NET SMTPClient to send email, the email content contains Chinese character in both Subject and Body. By the following code, I'm able to set the Email

[Solved] Outlook SMTPClient server error 5.3.4 5.2.0 - Local Coder

I have an MVC .NET web application that has been running stable for the most part of a year now. However today we received an error code and I'm having trouble finding how to resol

[Solved] Getting SmtpClient to work with a self signed SSL certificate - Local Coder

I'm attempting to use the System.Net.Mail.SmtpClient class to relay an email through my company's email server. All SMTP connections to the mail server have to be SSL and it uses a

[Solved] Sending mail through http proxy - Local Coder

I'm trying to send emails from a system that connects to internet through a http proxy which is set in Internet Options. i'm using SmtpClient. Is there any way to send mails with S

[Solved] Add Attachment base64 image in MailMessage and read it in html body - Local Coder

Currently I have to send emails with MailMessage and SmtpClient but I need to send a picture that is currently in base64 string within the MailAddress body. I have understood that

[Solved] how to send mails asynchronous? - Local Coder

namespace Binarios.admin { public class SendEmailGeral { public SmtpClient client = new SmtpClient('smtp.gmail.com', 587); public MailMessage msg = new Mail

[Solved] Force Outlook to display from display name in header - Local Coder

I'm sending an email with .net SmtpClient and MailMessage. I set the from to be From: Something Else <mysmtprelay@example.com>. Note that mysmtprelay@example.com is a valid

[Solved] Using SmtpClient to send a file attachment - Local Coder

I am using the SmtpClient class to send mail and also attach files. Everything seems to work fine, except that the filename in the email attachment says filestest.docx instead of t

[Solved] SMTP Authentication Error "Failure Sendng Mail" - Local Coder

I am trying to send email from my asp.net web page if certain conditions are fulfilled. Here is my code. SmtpClient smtpClient = new SmtpClient(); NetworkCredential basicCredential

Похожие теги: