« Outlook et CSharp » : différence entre les versions
De Banane Atomic
Aller à la navigationAller à la recherche
(Page créée avec « Référence .NET « Microsoft.Office.Interop.Outlook ». {| !style="padding: 0 10px 0 0"| 40px | <syntaxhighlight lang="csharp"> using Microsoft.Office.In... ») |
Aucun résumé des modifications |
||
Ligne 1 : | Ligne 1 : | ||
[[Category:CSharp]] | |||
Référence .NET « Microsoft.Office.Interop.Outlook ». | Référence .NET « Microsoft.Office.Interop.Outlook ». | ||
<kode lang="csharp"> | |||
< | |||
using Microsoft.Office.Interop.Outlook; | using Microsoft.Office.Interop.Outlook; | ||
Ligne 14 : | Ligne 13 : | ||
_mail.Importance = OlImportance.olImportanceNormal; | _mail.Importance = OlImportance.olImportanceNormal; | ||
_mail.Attachments.Add((object)pathToAttachment, OlAttachmentType.olEmbeddeditem, 1, (object)"Attachment"); | _mail.Attachments.Add((object)pathToAttachment, OlAttachmentType.olEmbeddeditem, 1, (object)"Attachment"); | ||
</ | </kode> | ||
Dernière version du 12 avril 2020 à 21:37
Référence .NET « Microsoft.Office.Interop.Outlook ».
using Microsoft.Office.Interop.Outlook; Application outlook = new Application(); MailItem _mail = (MailItem)outlook.CreateItem(OlItemType.olMailItem); _mail.Subject = "Sujet"; _mail.To = "adresse@entreprise.fr"; _mail.CC = "adresse2@entreprise.fr"; _mail.Body = "Message"; _mail.Importance = OlImportance.olImportanceNormal; _mail.Attachments.Add((object)pathToAttachment, OlAttachmentType.olEmbeddeditem, 1, (object)"Attachment"); |