Click here to Skip to main content
15,887,596 members
Home / Discussions / C#
   

C#

 
AnswerRe: PBX and C# and TAPI Pin
Dave Kreskowiak8-Jun-12 7:45
mveDave Kreskowiak8-Jun-12 7:45 
QuestionRe: PBX and C# and TAPI Pin
jojoba20118-Jun-12 7:57
jojoba20118-Jun-12 7:57 
AnswerRe: PBX and C# and TAPI Pin
Dave Kreskowiak8-Jun-12 8:06
mveDave Kreskowiak8-Jun-12 8:06 
QuestionRe: PBX and C# and TAPI Pin
jojoba20118-Jun-12 8:16
jojoba20118-Jun-12 8:16 
AnswerRe: PBX and C# and TAPI Pin
Dave Kreskowiak8-Jun-12 10:13
mveDave Kreskowiak8-Jun-12 10:13 
QuestionRe: PBX and C# and TAPI Pin
jojoba20118-Jun-12 20:36
jojoba20118-Jun-12 20:36 
AnswerRe: PBX and C# and TAPI Pin
Dave Kreskowiak9-Jun-12 4:56
mveDave Kreskowiak9-Jun-12 4:56 
Questionsystem.web.mail do note save sentitem Pin
GinoPittaro19647-Jun-12 22:37
GinoPittaro19647-Jun-12 22:37 
I am using system.web.mail in windowsform to send mails on a ssl webmail of a service for certified mails. The problem is that the mails are not saved in the sentItems. Is there anyway to dio that? (Thanks)
here is the code:
System.Web.Mail.MailMessage newMail = new System.Web.Mail.MailMessage();
newMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserver", "smtps.pec.aruba.it");
newMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserverport", "465");
newMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusing", "2");
newMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1");
newMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "xxxxxxxxxxxxx@pec.it");
newMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "yyyyyyyyyyyyyyy")
newMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpusessl", "true");
newMail.From = "xxxxxxxxxxxxx@pec.it");

newMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/savesentitems", "true");

newMail.To = dataGridView2.Rows[i].Cells[0].Value.ToString().Trim();

newMail.Subject = textOggetto.Text;

newMail.BodyFormat = System.Web.Mail.MailFormat.Html;

newMail.Body = editor.BodyHtml;

System.Web.Mail.SmtpMail.SmtpServer = "smtps.pec.aruba.it:465";

System.Web.Mail.SmtpMail.Send(newMail);
AnswerRe: system.web.mail do note save sentitem Pin
egenis7-Jun-12 23:55
egenis7-Jun-12 23:55 
GeneralRe: system.web.mail do note save sentitem Pin
GinoPittaro19648-Jun-12 0:02
GinoPittaro19648-Jun-12 0:02 
GeneralRe: system.web.mail do note save sentitem Pin
egenis8-Jun-12 0:31
egenis8-Jun-12 0:31 
AnswerRe: system.web.mail do note save sentitem Pin
Bernhard Hiller8-Jun-12 3:03
Bernhard Hiller8-Jun-12 3:03 
AnswerRe: system.web.mail do note save sentitem Pin
Simon_Whale8-Jun-12 3:55
Simon_Whale8-Jun-12 3:55 
QuestionHow to upload apicture into a picturebox in C# Pin
Member 90915607-Jun-12 21:27
Member 90915607-Jun-12 21:27 
AnswerRe: How to upload apicture into a picturebox in C# Pin
Richard MacCutchan7-Jun-12 21:55
mveRichard MacCutchan7-Jun-12 21:55 
GeneralRe: How to upload apicture into a picturebox in C# Pin
Member 90915608-Jun-12 0:19
Member 90915608-Jun-12 0:19 
QuestionHow to fetch data from database in lables in asp.net using three tier architecture Pin
mohansahu7-Jun-12 20:47
mohansahu7-Jun-12 20:47 
AnswerRe: How to fetch data from database in lables in asp.net using three tier architecture Pin
Abhinav S7-Jun-12 20:54
Abhinav S7-Jun-12 20:54 
QuestionC# linq to sql Pin
dcof7-Jun-12 7:15
dcof7-Jun-12 7:15 
AnswerRe: C# linq to sql Pin
Eddy Vluggen7-Jun-12 9:50
professionalEddy Vluggen7-Jun-12 9:50 
AnswerRe: C# linq to sql Pin
Matt T Heffron7-Jun-12 12:53
professionalMatt T Heffron7-Jun-12 12:53 
GeneralRe: C# linq to sql Pin
dcof8-Jun-12 3:19
dcof8-Jun-12 3:19 
GeneralRe: C# linq to sql Pin
BobJanova8-Jun-12 4:50
BobJanova8-Jun-12 4:50 
QuestionDynamic Ajax accordion not fetching any data at production server Pin
Member 90849896-Jun-12 23:08
Member 90849896-Jun-12 23:08 
AnswerRe: Dynamic Ajax accordion not fetching any data at production server Pin
BobJanova6-Jun-12 23:31
BobJanova6-Jun-12 23:31 

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.