Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
338 views

How can I send email asynchronously from a MVC 3 application?

In my MVC 3 Razor application, an ActionResult Create() method in the Controller handles a user HttpPost. At that point: Data is saved to a database. Emails are sent to interested parties using ...
3
votes
2answers
418 views

Socket.SendAsync is not sending in-order on Mono/Linux

There is a a single-threaded server using .NET Socket with TCP protocol, and Socket.Pool(), Socket.Select(), Socket.Receive(). To send, I used: public void SendPacket(int clientid, byte[] packet) { ...
3
votes
2answers
2k views

SmtpClient.SendAsync - How to ensure my application doesn't finish before callback?

I need to send emails asychronously through a console application. I need to do some DB updates on the callback but my application is exiting before the callback code gets run! How can I stop this ...
3
votes
3answers
3k views

ASP.NET MVC: Send email using SendAsync (System.Net.Mail)

is there any way in MVC to get the System.Net.Mail SendAsync to work, instead of the blocking Send method? I tried using it but hit the "Page starting an asynchronous operation has to have the Async ...
2
votes
4answers
64 views

how to stop application from quiting before the mail is send through SmtpMailClient.SendAsync()

I have a issue with sending mail via SmtpMailClient.SendAsync(), i.e. if the application is closed immediately after SmtpMailClient.SendAsync(), mail is not sent. So how to force the app not to ...
2
votes
2answers
167 views

MVCMailer SendAsync and deleting attachments

I'm having trouble getting MVCMailer to delete attachments after sending an email asynchronously. I can't figure out what to do to dispose of the message to free up processes attached to the message ...
1
vote
2answers
296 views

Using Asp.Net to SendAsync emails but Page still waits?

I don't want the user to wait for page completing the sending processes, so I'm thought of using SendAsync in ASP.NET 3.5. But for after debuging, I found that the Main Thread still waits. Main: ...
1
vote
2answers
456 views

Dispose SmtpClient in SendComplete?

When I use SmtpClient's SendAsync to send email, how do dispose smtpclient instance correctly? Let's say: MailMessage mail = new System.Net.Mail.MailMessage() { Body = MailBody.ToString(), ...
1
vote
2answers
510 views

Checking whether SendAsync has finished sending

As in the simplified code below, is checking that SendAsync() has finished transmitting all intended bytes in the buffer the correct thing to do? Or is that redundant? This is for a TCP connection ...
1
vote
3answers
1k views
1
vote
3answers
2k views

.NET SMTP SendAsync with AlternateViews throws disposed exception

I am trying to send E-mails asynchronously and it works fine as long as there isn't an AlternateView attached to the e-mail. When there is an alternate view, I get the following error: Cannot access ...
0
votes
0answers
24 views

Sending mail slow on IIS 7

I have written a code to send mail using SendAsync method of SMTP Client class. The codes work perfectly fine when I debug it. (i.e. running under webdevserver). But as soon as I host it on IIS 7, it ...
0
votes
3answers
101 views

Is it wise to use SMTP.SendAsync in asp.net

I'm writing a code that sends 2 codes to 2 different emails (to check that owner of both emails are the same person). And I got the error: System.InvalidOperationException: An asynchronous call is ...
0
votes
1answer
465 views

SmtpClient.SendAsync() does not work anymore

I have recently purchased a new computer, and now my e-mails never get sent, and there are NEVER any exceptions thrown or anything. Can somebody please provide some samples that work using the ...
0
votes
1answer
636 views

Ping Class SendAsync Help

I am new to programing and can not find or know what to search for to debug the thread that is started with the SendAsync Method. The code works good using the Send Method but when using SendAsync it ...
0
votes
1answer
451 views

When will SendAsync complete?

I'm writing a server and need to be able to send a message to all connected clients. I'm trying to decide if I should create SocketAsyncEventArgs for each connected socket and send all the packets at ...