I have seen a posting on "indika-kumara.blogspot.com" how to send e-mails by using G-mail credentials on C#.net.Thank you Indika.
Here I am going to tell you how to send e-mails on C#.net as well with embedded images.I have tried several ways on this and this is the way I found.If you know some easy way than this please tell me.
First of all we have to write the code which simply send the e-mails.Here is the code which sends an simple mail.
On flickr you can just sign-in by using your yahoo mail address because it is one of yahoo service.
After uploading the image you have to get the URL of that image.
e.g. -
e.g. - But if you give simply this on C#.net as the content of the e-mail it will pop an error.So you have to put (\) escape characters for quotations (").
e.g. - Yes simply you can put several images with some text also. I have edited some content for you.Please replace the content with the following string and send the mail.
Here I am going to tell you how to send e-mails on C#.net as well with embedded images.I have tried several ways on this and this is the way I found.If you know some easy way than this please tell me.
First of all we have to write the code which simply send the e-mails.Here is the code which sends an simple mail.
public static void sendEmail() { System.Net.Mail.MailMessage MyMailMessage = new System.Net.Mail.MailMessage( "from@gmail.com",//your gmail address "to@yahoo.com",// receiver "subject goes here", "content goes here"); MyMailMessage.IsBodyHtml = true;//enables HTML System.Net.NetworkCredential mailAuthentication = new System.Net.NetworkCredential( "from@gmail.com",//your gmail address "myPassword");//your gmail password System.Net.Mail.SmtpClient mailClient = new System.Net.Mail.SmtpClient("smtp.gmail.com",587); mailClient.EnableSsl = true; mailClient.UseDefaultCredentials = false; mailClient.Credentials = mailAuthentication; mailClient.Send(MyMailMessage); }Then we have to find a way to embed an image to the mail content.Actually we have to find a place to upload our image first.I have used flickr.com but picasa on Google is also good.
On flickr you can just sign-in by using your yahoo mail address because it is one of yahoo service.
After uploading the image you have to get the URL of that image.
e.g. -
http://farm2.static.flickr.com/1389/737548198_f1acba1224_o.jpgThen you have to edit some HTML to make our content on the mail.Here is a simple HTML with a single image.
e.g. - But if you give simply this on C#.net as the content of the e-mail it will pop an error.So you have to put (\) escape characters for quotations (").
e.g. - Yes simply you can put several images with some text also. I have edited some content for you.Please replace the content with the following string and send the mail.
You can write any HTML and put them as the content.If you have come up with some issues or need clarifications please put them as comments.Intel's Core 2 Quadro Kentsfield
I thought of inserting a large image of the processor. And to see more clear image with the text which describes all the parts on it please click on the image. Intel came up with an Core 2 Quadro with the code name \"Kentsfield\" which has 4 cores on it.
Comments
Post a Comment