Bonjour,
J’ai utilisé la macro indiqué dans ce commentaire et je l’ai modifié comme ci-dessous, et ça fonctionne à nouveau sans transformer en Chinois!
Sub AlwaysReplyInHTML_Kutools()
Dim xSelection As Outlook.Selection
Dim xItem As Object
Dim xMail As Outlook.MailItem
Dim xMailReply As Outlook.MailItem
'On Error Resume Next
Select Case TypeName(Application.ActiveWindow)
Case "Explorer"
Set xSelection = Application.ActiveExplorer.Selection
If xSelection.Count > 0 Then
Set xItem = xSelection.Item(1)
Else
MsgBox "Please select an item first!", vbCritical, "Kutools for Outlook"
Exit Sub
End If
Case "Inspector"
Set xItem = Application.ActiveInspector.CurrentItem
Case Else
MsgBox "Unsupported Window type." & vbNewLine & "Please select or open an item first.", vbCritical, "Kutools for Outlook"
Exit Sub
End Select
If xItem.Class = olMail Then
Set xMail = xItem
'Changer le format ici, afin que la réponse inclut notre signature en html!
xMail.BodyFormat = olFormatHTML
Set xMailReply = xMail.Reply
xMailReply.Display
'xMailReply.BodyFormat = olFormatHTML
Else
MsgBox "No message item selected. Please select a message first.", vbCritical, "Kutools for Outlook"
Exit Sub
End If
Set xMailReply = Nothing
Set xMail = Nothing
Set xItem = Nothing
Set xSelection = Nothing
End Sub