You would have to use a macro to save the animated gif. Here is a sample
macro. (You have to open [not preview] the message in question.)
Sub SaveAttachment()
Dim objCurrentItem As Outlook.MailItem
Dim colAttachments As Outlook.Attachments
Dim objAttachment As Outlook.Attachment
Set objCurrentItem = Application.ActiveInspector.CurrentItem
Set colAttachments = objCurrentItem.Attachments
For Each objAttachment In colAttachments
objAttachment.SaveAsFile ("C:\" & objAttachment.FileName)
Next
Set objAttachment = Nothing
Set colAttachments = Nothing
objCurrentItem.Close (olDiscard)
Set objCurrentItem = Nothing
End Sub
"(E-Mail Removed)" <(E-Mail Removed)> wrote in
message news:635b01c47542$29135280$(E-Mail Removed)...
> I have received an email with an embedded animated gif.
> Does anyone know how I can access the gif file?
|