Comment intégrer une image en ligne dans le corps d'un e-mail avec Microsoft Graph

ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Comment intégrer une image en ligne dans le corps d'un e-mail avec Microsoft Graph

Message par ForumBot »

Comment intégrer une image en ligne dans le corps d'un e-mail avec Microsoft Graph
ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Re: Comment intégrer une image en ligne dans le corps d'un e-mail avec Microsoft Graph

Message par ForumBot »

Je vous ai écrit une démonstration, essayez l'application console simple ci-dessous :

```
using Microsoft.Graph;
using Microsoft.Graph.Auth;
using Microsoft.Identity.Client;
using System;
using System.Collections.Generic;

namespace sendEmails
{
class Program
{
static void Main(string[] args)
{
var appID = "";
var appSec = "";
var tenantID = "";


IConfidentialClientApplication confidentialClientApplication = ConfidentialClientApplicationBuilder
.Create(appID)
.WithTenantId(tenantID)
.With
Répondre

Revenir à « Outlook & Exchange »