Click here to Skip to main content
15,885,914 members
Home / Discussions / C#
   

C#

 
AnswerRe: Display Jpeg and othe rtext on a windows forms app Pin
Christian Graus23-Jun-08 11:28
protectorChristian Graus23-Jun-08 11:28 
Question.NET Form Pin
_Tom_23-Jun-08 4:09
_Tom_23-Jun-08 4:09 
AnswerRe: .NET Form Pin
leppie23-Jun-08 4:13
leppie23-Jun-08 4:13 
QuestionFire an event Pin
HenrydeSousa23-Jun-08 3:24
HenrydeSousa23-Jun-08 3:24 
AnswerRe: Fire an event Pin
Ed.Poore23-Jun-08 3:25
Ed.Poore23-Jun-08 3:25 
AnswerRe: Fire an event Pin
Giorgi Dalakishvili23-Jun-08 3:27
mentorGiorgi Dalakishvili23-Jun-08 3:27 
AnswerRe: Fire an event Pin
HenrydeSousa23-Jun-08 7:31
HenrydeSousa23-Jun-08 7:31 
Questionemail [modified] Pin
arkiboys23-Jun-08 2:47
arkiboys23-Jun-08 2:47 
The following code does NOT give an error but do not know why I do not get the email sent by this code.
Thanks

using System.Net.Mail;

private void mnuFileSendMail_Click(object sender, EventArgs e)
{
try
{
SmtpClient mailClient = new SmtpClient("smtpinternalName.dev");

//Create the mail message
string from = "mywork@company.com";
string to = "myWebaddress@hotmail.com";
string subject = "subject";
string body = "text of the body";

MailMessage mailMessage = new MailMessage(from, to, subject, body);
mailClient.Send(mailMessage); //Send(Mail)
}
catch (Exception ex)
{
throw ex;
}
}

modified on Monday, June 23, 2008 8:55 AM
RantRe: email Pin
Harvey Saayman23-Jun-08 2:50
Harvey Saayman23-Jun-08 2:50 
GeneralRe: email Pin
Ed.Poore23-Jun-08 3:06
Ed.Poore23-Jun-08 3:06 
GeneralRe: email Pin
Harvey Saayman23-Jun-08 3:09
Harvey Saayman23-Jun-08 3:09 
General[Message Deleted] Pin
Verghese23-Jun-08 3:39
Verghese23-Jun-08 3:39 
GeneralRe: email Pin
Harvey Saayman23-Jun-08 3:56
Harvey Saayman23-Jun-08 3:56 
General[Message Deleted] Pin
Verghese23-Jun-08 4:02
Verghese23-Jun-08 4:02 
GeneralRe: email Pin
Harvey Saayman23-Jun-08 4:11
Harvey Saayman23-Jun-08 4:11 
GeneralRe: email Pin
Verghese23-Jun-08 4:56
Verghese23-Jun-08 4:56 
GeneralRe: email Pin
Harvey Saayman23-Jun-08 5:02
Harvey Saayman23-Jun-08 5:02 
GeneralRe: email Pin
Verghese23-Jun-08 5:04
Verghese23-Jun-08 5:04 
AnswerRe: email Pin
Ed.Poore23-Jun-08 3:05
Ed.Poore23-Jun-08 3:05 
AnswerRe: email Pin
Bert delaVega23-Jun-08 3:18
Bert delaVega23-Jun-08 3:18 
AnswerRe: email Pin
Luc Pattyn23-Jun-08 3:27
sitebuilderLuc Pattyn23-Jun-08 3:27 
AnswerRe: email Pin
Spacix One23-Jun-08 3:52
Spacix One23-Jun-08 3:52 
QuestionFile Pin
ellllllllie23-Jun-08 2:36
ellllllllie23-Jun-08 2:36 
AnswerRe: File Pin
Spacix One23-Jun-08 3:54
Spacix One23-Jun-08 3:54 
QuestionCopying file error. Pin
asma_panjabi23-Jun-08 2:32
asma_panjabi23-Jun-08 2:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.