如果您能够脱壳,outlook.exe 可以只运行 emls 而无需像这样进行转换
outlook.exe /eml "path\to\file.eml"
如果电子邮件是可编辑的 ( X-Unsent= 1
),这甚至可以工作。
甚至可能有一种方法可以在没有外壳的情况下进行等效操作,这会很好。
或者,您可以通过编程方式执行此操作,但需要转换;实际上,如果您希望任何可编辑的电子邮件自动插入用户的签名(因为那将是经常,而不是 msg/eml),您必须这样做。
下面我有一个 powershell脚本,它接受一个 eml 并有条件地保存一个 msg 或一个 oft,然后打开它。
你可以让它只转换而不打开,或者只打开而不转换(但你仍然需要制作临时文件:OOM 不接受MailItem
从内存中制作 s);我只是为后代涵盖所有基础。
我使用它是eml 文件扩展名与客户端机器上的脚本相关联,他们双击一个 eml 文件,它在 Outlook 中打开。
尽管它是 powershell,但 C# 是可以互换的;我的意思是我写它时只阅读了 C# 的示例和文档(可能是旧 CDO 的一些 vbs)。
我不知道 C#,并且觉得把它放在这里对看到这篇文章的人来说比不写任何东西更有帮助(因为我不得不搜索互联网并从头开始做)。
如果有人移植它,我很乐意接受任何编辑
$location = $PSScriptRoot
Start-Transcript "$location\LOG.txt" -Append
#ADODB only works if MIME is at the top
. {
'MIME-Version: 1.0'
Get-Content $args[0] <#-AsByteStream#>
} $args[0] | Set-Content "$location\tmp" <#-AsByteStream#>
#parse the eml
$eml = New-Object -ComObject ADODB.Stream
$eml.Open()
$eml.LoadFromFile("$location\tmp")
$eml.Flush()
$email = New-Object -ComObject "CDO.Message"
$email.DataSource.OpenObject($eml, "_Stream")
$email.DataSource.Save()
$eml.Close()
#!moved this to the bottom to demonstrate no-shellingout and msg conversion
#if the email is not editable, just open it normally
#if ($email.Fields('urn:schemas:mailheader:X-Unsent').Value -ne '1') {
# & "${env:ProgramFiles}\Microsoft Office\root\Office16\OUTLOOK.EXE" /eml $args[0]
# exit
#}
#build the template
$outlook = New-Object -ComObject Outlook.Application
$output = $outlook.CreateItem(<#olMailItem#>0)
$output.Sender = $email.From
$output.To = $email.To
$output.CC = $email.CC
$output.BCC = $email.BCC
$output.Subject = $email.Subject
if ($email.ReplyTo) {
$output.ReplyRecipients.Add($email.ReplyTo) | Out-Null
}
$output.BodyFormat = <#olFormatHTML#>2
$output.HTMLBody = $email.HTMLBody
#for each of the attachments
. {for ($part = $email.HTMLBodyPart; $part = $part.Parent) {
$part.BodyParts | Where-Object {
$_.Fields('urn:schemas:httpmail:content-disposition-type').Value -match '^(inline|attachment)$'
}
}} | %{
#get the name
$name = ($_.FileName -replace '^.*[/\\]','').trim('.')
#make one if it didnt have one
if (!$name) {
$name = (
'Untitiled attachment' +
($_.Fields('urn:schemas:httpmail:content-media-type').Value `
-replace '[/\\]' ,'.' `
-replace '^\.+|\.+$','' `
-replace '^(.)' ,' $1'
)
)
}
#save the attachment to file
$_.
GetDecodedContentStream().
SaveToFile("$location\$name", <#adSaveCreateOverWrite#>2)
#TODO unicode,bigendianunicode,utf8,utf7,utf32,ascii,default,oem
if ($_.Charset -imatch 'UTF-8') {
Get-Content "$location\$name" | Out-File 'tmp' -encoding utf8
Move-Item 'tmp' "$location\$name" -Force
}
#pull it into the email
$attachment = $output.Attachments.Add("$location\$name").PropertyAccessor
Remove-Item "$location\$name"
#set up its properties
if ($_.Fields('urn:schemas:mailheader:content-id').Value) {
$attachment.SetProperty(
<#PR_ATTACH_CONTENT_ID(unicode)#>'http://schemas.microsoft.com/mapi/proptag/0x3712001F',
$_.Fields('urn:schemas:mailheader:content-id').Value.trim('<>')
)
}
if ($_.Fields('urn:schemas:httpmail:content-media-type').Value) {
$attachment.SetProperty(
<#PR_ATTACH_MIME_TAG(unicode)#>'http://schemas.microsoft.com/mapi/proptag/0x370E001F',
$_.Fields('urn:schemas:httpmail:content-media-type').Value
)
}
}
#save and open the email
if ($email.Fields('urn:schemas:mailheader:X-Unsent').Value -eq '1') {
$output.SaveAs("email.oft", <#olTemplate#>2)
$output.Close(<#olDiscard#>1)
$outlook.CreateItemFromTemplate("email.oft").Display()
}
else {
$output.SaveAs("email.msg", <#olMSG#>3)
$output.Close(<#olDiscard#>1)
$outlook.Session.OpenSharedItem("email.msg").Display()
}
#!as per the above #!; I would normally not have the x-unset test here
#!and would only save the template, but calling it simply 'tmp', so no leftover files are made
Remove-Item "$location\tmp"
我想我已经涵盖了所有内容。这适用于附件、嵌入式图像和 css,但假定 HTML 电子邮件和 utf8 用于文本附件。
这就是我所需要的,虽然添加对其他东西的支持并不难,但如果你是私人的,或者可以使用付费的 3rd 方,Dmitry 似乎在 Redemption 上做了一件非常全面的事情(我见过他的头像 A在我最近的旅行中很多),对你来说会简单得多。