Click here to Skip to main content
15,891,375 members
Home / Discussions / C#
   

C#

 
AnswerRe: what is c# Pin
Sascha Lefèvre7-Apr-16 9:15
professionalSascha Lefèvre7-Apr-16 9:15 
GeneralRe: what is c# Pin
Ratul Thakur8-Apr-16 7:09
Ratul Thakur8-Apr-16 7:09 
GeneralRe: what is c# Pin
Sascha Lefèvre8-Apr-16 21:32
professionalSascha Lefèvre8-Apr-16 21:32 
GeneralRe: what is c# Pin
Pete O'Hanlon7-Apr-16 11:45
mvePete O'Hanlon7-Apr-16 11:45 
GeneralRe: what is c# Pin
Mycroft Holmes7-Apr-16 14:11
professionalMycroft Holmes7-Apr-16 14:11 
GeneralRe: what is c# Pin
Luc Pattyn7-Apr-16 22:06
sitebuilderLuc Pattyn7-Apr-16 22:06 
GeneralRe: what is c# Pin
Ratul Thakur8-Apr-16 7:06
Ratul Thakur8-Apr-16 7:06 
GeneralRe: what is c# Pin
John C Rayan7-Apr-16 23:43
professionalJohn C Rayan7-Apr-16 23:43 
AnswerRe: what is c# Pin
V.8-Apr-16 2:54
professionalV.8-Apr-16 2:54 
QuestionConvert C# Code to run powershell Pin
Dikshitar V.6-Apr-16 0:15
Dikshitar V.6-Apr-16 0:15 
AnswerRe: Convert C# Code to run powershell Pin
CHill606-Apr-16 2:27
mveCHill606-Apr-16 2:27 
GeneralRe: Convert C# Code to run powershell Pin
Dikshitar V.6-Apr-16 2:51
Dikshitar V.6-Apr-16 2:51 
GeneralRe: Convert C# Code to run powershell PinPopular
CHill606-Apr-16 3:04
mveCHill606-Apr-16 3:04 
GeneralRe: Convert C# Code to run powershell Pin
Dikshitar V.6-Apr-16 3:41
Dikshitar V.6-Apr-16 3:41 
QuestionRe: Convert C# Code to run powershell Pin
Richard MacCutchan6-Apr-16 4:37
mveRichard MacCutchan6-Apr-16 4:37 
AnswerRe: Convert C# Code to run powershell Pin
Dikshitar V.6-Apr-16 7:05
Dikshitar V.6-Apr-16 7:05 
GeneralRe: Convert C# Code to run powershell Pin
CHill606-Apr-16 8:02
mveCHill606-Apr-16 8:02 
GeneralRe: Convert C# Code to run powershell Pin
Dikshitar V.6-Apr-16 8:31
Dikshitar V.6-Apr-16 8:31 
GeneralRe: Convert C# Code to run powershell Pin
OriginalGriff6-Apr-16 5:08
mveOriginalGriff6-Apr-16 5:08 
GeneralRe: Convert C# Code to run powershell Pin
Dikshitar V.6-Apr-16 5:18
Dikshitar V.6-Apr-16 5:18 
GeneralRe: Convert C# Code to run powershell Pin
CHill606-Apr-16 5:31
mveCHill606-Apr-16 5:31 
Questionhow to save smtp sent mail messages to outlook sent items folder when sent from outlook addin Pin
sudhir giet5-Apr-16 2:30
professionalsudhir giet5-Apr-16 2:30 
AnswerRe: how to save smtp sent mail messages to outlook sent items folder when sent from outlook addin Pin
Dave Kreskowiak5-Apr-16 2:41
mveDave Kreskowiak5-Apr-16 2:41 
GeneralRe: how to save smtp sent mail messages to outlook sent items folder when sent from outlook addin Pin
sudhir giet5-Apr-16 3:50
professionalsudhir giet5-Apr-16 3:50 
GeneralRe: how to save smtp sent mail messages to outlook sent items folder when sent from outlook addin Pin
Dave Kreskowiak5-Apr-16 4:17
mveDave Kreskowiak5-Apr-16 4:17 
OK, so you're sending the mail as someone else using an outside service provider. Outside SMTP servers doesn't provide any "sent mail" tracking folders. SMTP only sends a mail message and then forgets about it. If you want a Sent Mail copy your application has to track that. The SMTP server doesn't have any facility for that.

How does Outlook.com do it?? It saves a copy of the mail message in an application folder after the mail is successfully sent using SMTP. The application does it, not the SMTP server.

So, YOUR CODE has to save a copy of the mail message in Outlook. You cannot depend on an outside provider to provide that service for you.
A guide to posting questions on CodeProject

Click this: Asking questions is a skill.
Seriously, do it.

Dave Kreskowiak

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.