on .NET Framework , allows applications to send e-mail by using the Simple Mail Transfer Protocol (SMTP)

learn more… | top users | synonyms

-2
votes
2answers
42 views

Assigning string and Int with If statement

Ok I have been searching for a solution for this but am stumped. I'm making an email client in C#. I can get around in c# but sometimes get caught up with syntax. Heres my problem. I am trying to ...
0
votes
0answers
19 views

Using System.Net.NetworkCredential on external website

I am just looking for best practice really. I am creating a form for an external website, on the form a user enters some standard details: name, email address etc. and on a button click, an e-mail is ...
0
votes
2answers
47 views

I want to send “Helo localhost” to a Smtp server with .NET (C# or VB)

In the current project, I'm asked to check connectivity to Smtp servers, via the response of "Helo" ("Ehlo" would be also fine, and actually, I could listen to any suggestion that could confirm ...
-1
votes
2answers
28 views

sand smtp mail php class SMTPClient

I SMTPClient class mail utf-8 post, but I did not do anything! Please Help me get thank you class SMTPClient { function SMTPClient ($SmtpServer, $SmtpPort, $SmtpUser, $SmtpPass, $from, $to, ...
0
votes
1answer
29 views

SmtpFailedRecipientException not showing the complete message text

Sending mails via (new SmtpClient()).Send(msg) get me a SmtpFailedRecipientException with message "Mailbox unavailable. The server response was: 5.7.1 Unable to relay", not showing me the rest of the ...
0
votes
2answers
40 views

Why do we periodically get “An asynchronous call is already in progress” when calling SmtpClient.Send?

We have some (synchronous) email code, which creates a class that creates an SmtpClient, and then sends an email. The SmtpClient is not reused; however we get the following exception every now and ...
0
votes
1answer
55 views

how to handle system.net.mail.smtpfailedrecipientsexception failed recipients

I wanna send email to multiple addresses (more than 1000 users) and use the following code, when I use it to send email to less than 100 users it works, but for more than 100 users it does not work ...
0
votes
0answers
25 views

Implementing gmail smtp for site wide contact module in drupal7

I have a drupal site, and i have used the site wide contact form, now as i am using free hosting server, i don't have a smtp server provided, so i want to use gmail's free smtp server for receiving ...
0
votes
2answers
91 views

Send e-mail asp.net C# Windows7 32 bit

I am trying to send an e-mail from asp.net in Windows7. After hours of googling I found that SMTP server is not available in Windows 7. I have tried the following piece of codes and landed up with one ...
0
votes
0answers
28 views

Sending RTF attachment with C# fails on iOS

I'm using the .NET smtpclient to send an email with an RTF attachment. I've used this code a bazillion times before, but never to send an attached RTF to an iOS client. Using the first-gen iPad and ...
0
votes
0answers
126 views

MVC 4.5: Send an email with .pdf attachment using SmtpClient - what am I missing here?

This shouldn't be that complicated. I simply want to sent an email with a .pdf attachment. The email sends and is received with the attachment, but it is < 1k in length all the time. When I try ...
0
votes
1answer
35 views

What's the default timeout on the SmtpClient object?

What does the timeout default to in the .NET SmtpClient object? What unit of time is it (seconds, milliseconds, etc)?
2
votes
2answers
54 views

Emails not sent due to SMTP Exception

I have a general mailbox that could be used to send emails from my website. It has stopped working and throws an exception. The following is a screenshot of the error. The code is protected ...
-1
votes
2answers
60 views

SMTP Mail Errors

I am developing an C# application to send mail using the SMTP server of our company mail. Following is the code. MailMessage mail = new MailMessage(); SmtpClient SmtpServer = new ...
0
votes
1answer
55 views

PHP SMTPClient adding CC and BCC

I found a simple SMTPClient class for sending emails via SMTP. The problem is I need to add CC and BCC recipients to the client. Can someone assist in implementing this? Heres the class (scroll down ...
1
vote
0answers
52 views

SmptClient SendAsync blocking application, not sending asynchronously

Im using the development server and the SmtpClient.SendAsync, the mail gets Sent, but it still blocks all other operations on the page until sending is complete. Ive searched alot and cant seem to see ...
1
vote
3answers
82 views

Error In Sending Mail From Local Host To Gmail

I am just testing the email sending from local host to gmail.com ***Webconfig:*** <system.net> <mailSettings> <smtp> <network host="localhost" port="25" ...
-4
votes
1answer
75 views

How to avoid sending duplicate mail in c#

I have written a code which sends mail to the admin for moderation whenever a user adds a content from front end.....the problem is sometimes the admin gets two mails of same content. below is my ...
0
votes
0answers
60 views

SmtpClient fake domain name

I'm using the code below to try and send emails to a local SMTP Server but get a "badly formed EHLO" error from the server. try { MailMessage mail = new MailMessage(); ...
0
votes
1answer
68 views

Connecting to mailserver over an intranet

Problem: I am trying to connect to a remote mailserver to send emails from an ASP.NET MVC 4 app. Despite using the details that my client has given me to setup the web.config, I am getting the ...
-9
votes
1answer
97 views

C# - App crash when sending mail

Here is the code: (Of course that when I'm running it in using real emails) MailMessage Mail = new MailMessage(); Mail.To.Add("MailToAdress@outlook.com"); Mail.Subject = ("XXX"); Mail.From = new ...
0
votes
0answers
200 views

Send multiple emails using smtpclient.send - not working

The code below works when using on local machine, but fails when published on server (HostGator) for multiple emails in to. It also works if I am trying to send email to just one person. public void ...
0
votes
1answer
510 views

Mailbox unavailable. The server response was: 5.7.1 Unable to relay Error

I knw this question may marked duplicate but i have not yet found the solution to my problem, so posting my question. I have Hosted one of my website on netsol server. From there a contact.aspx has ...
0
votes
0answers
102 views

Remote web server cant send email by my ASP.NET 4 applicaiton

My site has some functionality to send email to user some perspective. I have done this. My method can sending email successfully when i am running this application from Visual Studio or My local IIS ...
0
votes
0answers
20 views

How to know if NetworkCredential authenticated

I am trying to send SMTP email with authenticated Credentials. The recipients mail boxes require that the sender be authenticated, so I am trying the below code. SmtpClient smtpClient = new ...
0
votes
2answers
71 views

I am not able to break a string when sending it through mail

When I use this to send mail the body string does not breaks for which I used NetworkCredential loginInfo = new NetworkCredential("bhavik778@gmail.com", mypassword); MailMessage msg = new ...
1
vote
1answer
167 views

Email header showing, dkim=hardfail (test mode) and dkim=permerror (bad sig)

I am trying to write an email client application by c++ and OpenSSL.. When I am checking and sending email through this application then Gmail and Yahoo both are showing wrong in my email header.. ...
2
votes
3answers
108 views

File are corrupted when Attaching them to MailMessage C#

I have created an application at work that generates exel files from some database data. After generating the files they are sent automatically to the customers in question. My problem is that it ...
0
votes
0answers
149 views

SmtpClient hangs with no exception thrown if wrong port was specified

I was trying to send emails in my Asp.Net C# application using port 465 with host "smtp.gmail.com" but the whole application hangs (keeps loading). When debugging it's stuck at SmtpClient.Send(msg). ...
1
vote
3answers
528 views

Can we send mails from localhost using asp.net and c#?

i am using using System.Net.Mail; and following code to send mail MailMessage message = new MailMessage(); SmtpClient client = new SmtpClient(); // Set the sender's address ...
0
votes
0answers
16 views

FileIOPermission Exception when sending email from GoDaddy

I have the following action method public ContentResult SendEmailGD(string subject, string email) { const string SERVER = "relay-hosting.secureserver.net"; MailMessage oMail = new ...
0
votes
1answer
172 views

smtpClient doesn't read the Web.config

In my MVC4 application, I'm trying to get mail sent using Web.config for configuration settings. I have papercut running as a mock SMTP server. When I try to use smtpClient and set host="localhost" in ...
0
votes
2answers
357 views

Sending Email In C# MVC..On Local host..not working?

Im trying to send out a basic email, using C# mvc...for some reason it wont work.. i tried many different solutions, but keep getting same error in browser that says" operation has timed ...
0
votes
1answer
133 views

sending mail with mail.live.com fails on production server

I've a simple script to send MailMessage emails. This works and sends emails running locally. However when deployed to production server I get this error Authentication failed because the remote ...
0
votes
1answer
293 views

Can't send email using implicit SSL smtp server

I wrote up a sample program by copying the code in this KB article with some little edit as far as user's info. It uses the deprecate .NET library System.Web.Mail to do it because the new ...
0
votes
1answer
81 views

SmtpClient scalability issue (only two running requests)

I'm trying to send bunch of emails using SmtpClient.SendMailAsync method from .NET 4.5 on Windows Server 2008 64-bit Enterprise with 32 CPUs. During the debugging I've found, that only two requests ...
1
vote
1answer
502 views

C# Winforms Application Failure in sending Email: The remote name could not be resolved: 'smtp.gmail.com ; Operation Timed out

My WinForms C# program sends email. I've used MailMessage and SmtpClient. In the constructor of SmtpClient I passed smtp.gmail.com and port 587. This is working on my friend's computer, however when ...
1
vote
4answers
94 views

How can I send a Mail with the Message Body as a Parameter and Using a Thread - C#

I have a problem, I'm trying send a mail using one structure like this one: private void SendMail() { var client = new SmtpClient("smtp.gmail.com", 587) { Credentials = new ...
0
votes
0answers
95 views

C# Email Send To Exchange Slow but Immediate if I Close My App

In a C# console app if I send an email to my own email address throug our Exchange server using the SmtpClient.Send() method the method returns right away and it takes about 30 seconds before it shows ...
0
votes
0answers
171 views

Failure sending mail in asp.net

InnerException: System.Net.Sockets.SocketException Message=A connection attempt failed because the connected party did not properly respond after a period of time, or established connection ...
-1
votes
3answers
154 views

how to send mails asynchronous? [duplicate]

namespace Binarios.admin { public class SendEmailGeral { public SmtpClient client = new SmtpClient("smtp.gmail.com", 587); public MailMessage msg = new MailMessage(); ...
7
votes
1answer
102 views

Send email in secure way

I'm trying to make a simple application which will send an email. I use MailMessage and SmtpClient classes. SmpClient requires a login and password to work. Is it secure to compile application with ...
0
votes
0answers
174 views

No connection could be made because the target machine actively refused it

I have some code in VB that sends email. The code works fine on Visual Studio and sends the email. However, I add it to the server and get the error No connection could be made because the target ...
-4
votes
1answer
110 views

Error in desktop mail client application in C# | Smtp error

I was building a desktop mail client using C# This application works fine in my friend's pc but not working in my pc. Its showing me a list of exception. Pls help me. System.Net.WebException: The ...
1
vote
1answer
237 views

Why SmtpClient SendAsync throws Exceptions with combinations of UseDefaultCredentials and EnableSsl, while Send works fine

I'm using the System.Net.Mail. There are some topics around this area, but they are ASP.NET and often VB related. I'm isolating the code into a desktop skeleton code, I use .NET 3.5 and C#. So Send ...
0
votes
0answers
115 views

How to send bulk email with different Subject and body for each recipient?

I am trying to develop a bulk email project using WCF Service. I am new to WCF and .net. My need is to send emails in Bulk by querying the data from the Oracle Database. So far here is my code for a ...
0
votes
3answers
592 views

How to send an email from my C# codebehind - Getting System.Net.Mail.SmtpFailedRecipientException

I have a webform where someone can set up an account - I want to send them an email confirmation. The code I'm using: // Create e-mail message MailMessage mm = new MailMessage(); ...
0
votes
1answer
291 views

the server rejected one or more recipient addresses. the server response was 550 5.7.1 unable to relay

I am sending mails using our company SMTP server. I get the problem when I am sending mail to other mails (out side of the company domain), returning the error: "The server rejected one or more ...
0
votes
0answers
213 views

web.config smtpclient settings for att.net

Has anyone been succesfull in connecting to att.net's email server? I've been successful in using a gmail account so I know my code in general is working. In the web.config this setting ...
3
votes
3answers
383 views

How do I send an email from a Windows Phone 8 application?

In a Windows Forms project, I used the SmtpClient and MailMessage class in order to send information by email. Is there an equivalent for Windows Phone 8?

1 2 3 4 5 8