Linked Questions
44 questions linked to/from Why do I get "'property cannot be assigned" when sending an SMTP email?
-2 votes
1 answer
1k views
How to send mail (System.Net.Mail)? [duplicate]
I tried to send email via c# by following: try { MailMessage message = new MailMessage(); message.To.Add("[email protected]"); message.Subject = "...
0 votes
0 answers
211 views
Sending and Receiving mail to MS Exchange via SMTPClient [duplicate]
So Ive been banging my head for days and trying as many solutions as I can find... All of which get me close, however in the end I run into the same road blocks. ( all of which I think are associated ...
1 vote
0 answers
201 views
SmtpException - Mailbox unavailable [duplicate]
It's like when I try to send email to customers, it comes forward and says there's a problem. The problem that it says is: Error: SmtpException: Mailbox unavailable. The server response was: ...
0 votes
1 answer
167 views
How to write mail Function using C#? [duplicate]
I had created the bootstrap contact form in a website. can anyone help me to write the code for mail function in C#,That yje user fill the form ,when the user clicks submit button,the details must ...
0 votes
0 answers
64 views
A first chance exception of type 'System.InvalidOperationException' occurred in System.dll [duplicate]
I keep getting this exception when trying to send a TextBox value to my email. This is the code I have so far and I have messed around with it a lot. I am not only getting this message but also I ...
971 votes
27 answers
680k views
Sending email in .NET through Gmail
Instead of relying on my host to send an email, I was thinking of sending the email messages using my Gmail account. The emails are personalized emails to the bands I play on my show. Is it possible ...
8 votes
2 answers
25k views
Error in Sending Email via a SMTP Client
This may be very trivial for you but i just couldn't figure out why am i getting this error message when i run my code. I looked some of the relative questions on this same website for eg Sending ...
4 votes
3 answers
13k views
c# Send Email using Process.Start
I want to send simple email with no attachment using default email application. I know it can be done using Process.Start, but I cannot get it to work. Here is what I have so far: string mailto = ...
0 votes
1 answer
14k views
How to configure SMTP for webmail
I have tried setting SMTP configuration for my webmail. I have used following settings for configuration Username: [email protected] Password: Use the email account’s password. Incoming Server: ...
0 votes
2 answers
3k views
How to make my bot send an e-mail to a given email address?
I am building a bot using Microsoft Bot Framework (.NET) and I want a Contact dialog where the user writes the subject, the body of the email and the user he wants to send the email to. For example, ...
-1 votes
4 answers
2k views
Email is successfully sending when ever i close my application
I am sending an email with some attachments and some basic information. So every thing is sending perfectly. But when ever i check my inbox mail not yet there, So i tried closing my application form. ...
1 vote
3 answers
5k views
How to send Colored text content using smtp mail in windows forms C#
I am sending colored text emails using smtp in c# but the content when i see in inbox it it showing as black colored text. How to send colored content using RichTextBox. RichTextBox is showing colored ...
0 votes
2 answers
6k views
How to send mail automatically in ng-click?
I'm using angularjs 1.4.8 in Visual Studio 2013. I want to send email to xxxx@ xxxx.com with message "Your registration completed" automatically after button has been clicked. How can I send email by ...
0 votes
4 answers
2k views
Send data file via email using C#
is it possible to send via email the file or data of an application made using c#? i have a program which will have its data stored in sqlite database at appdata. so i need to back it up regularly (or ...
-1 votes
2 answers
2k views
How to send value from textBox to mail?
I got this idea of making a mail sender. I tried to look for solutions but none really worked and they were badly explained or if it is even possible to do this? So i basically have this if else code ...