ウェブサーバーを通じてメールを変換します
Windows
2000/2003/Vista/7/8/10/11
and
2012/2016/2019/2022 Server
and
Docker/Citrix/Wine
Total Mail ConverterXは、Windowsウェブサーバー上でメール(.msg、.eml)をPDF、TXT、HTM、RTF、DOCファイルに変換するための使いやすいツールです。これは、将来開く必要があるビジネスメールをアーカイブする最も簡単な方法です。Total Mail ConverterXは幅広いターゲットフォーマット(DOC、RTF、PDF、XPS、HTML、XHTML、TXT、TIFF、JPEG、EML、MSG、PST)をサポートしています。Total Mail ConverterXはサーバー上で静かに動作します - ユーザーインターフェースなし、追加ポップアップなし、監視不要。
Total Mail ConverterXは、GUIを備えた通常のTotal Mail Converterと同じくらい強力です。多数のメールを一度に変換できます(はい、何十万通ものメールをまとめて)。また、新しい名前、ページカウンター、ベーツスタンプ、セキュリティ設定などで出力ファイルを強化することができます。
添付ファイルは抽出して同じフォルダーまたは新しいフォルダーに配置できます。アプリは添付ファイルに新しい名前を付けることができるため、どの添付ファイルがどのメールに属しているかを常に把握できます。プロバージョンは、メール本文と一緒に添付ファイルを変換できます。
Total Mail ConverterXは非常に使いやすく、特別な知識を必要としません。ActiveXを使用してアプリやシステムに簡単に組み込むことができます。価格も非常に手頃です(一括支払いでライセンスは一生有効、サブスクリプションなし)。今すぐコピーを入手してください!
ASP.net用に特化したC#のサンプルをご覧ください。他の言語のサンプルが必要な場合は、お問い合わせください。あなたのために特別なサンプルを作成します。
P.S. Total Folder Monitorをチェックしてください。新しいファイルが到着するとTotal Mail Converterを実行する、任意のフォルダーを監視します。詳細はこちらをご覧ください。
(30日間の無料試用を含む)
(のみ $950.00)
string src="C:\\test\\Source.Mail";
string dest="C:\\test\\Dest.PDF";
MailConverterX Cnv = new MailConverterX();
Cnv.Convert(src, dest, "-c PDF -log c:\\test\\Mail.log");
MessageBox.Show("Convert complete!");
ダウンロード .NET Mail Converterの例
docker run -p 5000:5000 tdhster/mailconverter-api
public static class Function1
{
[FunctionName("Function1")]
public static async Task Run(
[HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequest req,
ILogger log)
{
StringBuilder sbLogs = new StringBuilder();
sbLogs.AppendLine("started...");
try
{
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.CreateNoWindow = true;
startInfo.UseShellExecute = false;
var assemblyDirectoryPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
assemblyDirectoryPath = assemblyDirectoryPath.Substring(0, assemblyDirectoryPath.Length - 4);
var executablePath = $@"{assemblyDirectoryPath}\Converter\MailConverterX.exe";
sbLogs.AppendLine(executablePath + "...");
var msgPath = $@"{assemblyDirectoryPath}\MSG\MSG-1.msg";
var outPath = Path.GetTempFileName() + ".pdf";
startInfo.FileName = executablePath;
if (File.Exists(outPath))
{
File.Delete(outPath);
}
if (File.Exists(executablePath) && File.Exists(msgPath))
{
sbLogs.AppendLine("files exists...");
}
else
sbLogs.AppendLine("EXE & MSG files NOT exists...");
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.Arguments = $"{msgPath} {outPath}";
using (Process exeProcess = Process.Start(startInfo))
{
sbLogs.AppendLine($"wait...{DateTime.Now.ToString()}");
exeProcess.WaitForExit();
sbLogs.AppendLine($"complete...{DateTime.Now.ToString()}");
}
int sleepCounter = 10;
while(!File.Exists(outPath) && sleepCounter > 0)
{
System.Threading.Thread.Sleep(1000);
sbLogs.AppendLine("sleep...");
sleepCounter--;
}
if (File.Exists(outPath))
sbLogs.AppendLine("Conversion complete successfully.");
}
catch (Exception ex)
{
sbLogs.AppendLine(ex.ToString());
}
return new OkObjectResult(sbLogs);
}
}
dim C
Set C=CreateObject("MailConverter.MailConverterX")
C.Convert "c:\test\source.eml", "c:\test\dest.pdf", "-cPDF -log c:\mail.log"
Response.Write C.ErrorMessage
set C = nothing
dim C
Set C=CreateObject("MailConverter.MailConverterX")
Response.Clear
Response.AddHeader "Content-Type", "binary/octet-stream"
Rresponse.AddHeader "Content-Disposition", "attachment; filename=test.pdf"
Response.BinaryWrite c.ConvertToStream("C:\www\ASP\Source.eml", "C:\www\ASP", "-cpdf -log c:\html.log")
set C = nothing
例 PHP:
$src="C:\\test\\test.msg";
$dest="C:\\test\\test.pdf";
if (file_exists($dest)) unlink($dest);
$c= new COM("MailConverter.MailConverterX");
$c->convert($src,$dest, "-c pdf -log c:\\Mail.log");
if (file_exists($dest)) echo "OK"; else echo "fail:".$c->ErrorMessage;
require 'win32ole'
c = WIN32OLE.new('MailConverter.MailConverterX')
src="C:\\test\\test.pdf";
dest="C:\\test\\test.tiff";
c.convert(src,dest, "-c TIFF -log c:\\test\\Mail.log");
if not File.exist?(dest)
puts c.ErrorMessage
end
import win32com.client
import os.path
c = win32com.client.Dispatch("MailConverter.MailConverterX")
src="C:\\test\\test.eml";
dest="C:\\test\\test.tiff";
c.convert(src, dest, "-c TIFF -log c:\\test\\Mail.log");
if not os.path.exists(file_path):
print(c.ErrorMessage)
uses Dialogs, Vcl.OleAuto;
var
c: OleVariant;
begin
c:=CreateOleObject('MailConverter.MailConverterX');
C.Convert('c:\test\source.eml', 'c:\test\dest.tiff', '-c TIFF -log c:\test\Mail.log');
IF c.ErrorMessage<> Then
ShowMessage(c.ErrorMessage);
end;
var c = new ActiveXObject("MailConverter.MailConverterX");
c.Convert("C:\\test\\source.msg", "C:\\test\\dest.pdf", "-c PDF");
if (c.ErrorMessage!="")
alert(c.ErrorMessage)
use Win32::OLE; my $src="C:\\test\\test.eml"; my $dest="C:\\test\\test.tiff"; my $c = CreateObject Win32::OLE 'MailConverter.MailConverterX'; $c->convert($src,$dest, "-c TIFF -log c:\\test\\Mail.log"); print $c->ErrorMessage if -e $dest;
"私はFreeland Cooper & Foreman LLPで働いており、現在はTotal Mail Converterを購入したプロジェクトを担当しています。このプログラムを購入したのは、大量の.msgファイルを.pst形式に統合するためで、これまでのところ結果に非常に満足しています。信頼性が高く、高機能で、使いやすいです。"
Max Canin
www.freelandlaw.com
"私たちはSharePointを文書ライブラリとして使用し、UNCを介してアクセスしています。私はTotalMailConverterXを使用してメールメッセージをアーカイブしています。結果のファイル名の一部として件名を使用していますが、それが問題を引き起こしています。SharePointでは、ファイル名に特定の文字を許可していません。そこで、SharePointのUNCパスで使用するために安全でない文字を削除するコマンドラインオプションを追加できるかと思いました。"
Shane Adam
システムアナリスト&デベロッパー, http://eigltd.com
更新 2015年8月: 完了!
更新 Wed, 22 Oct 2025
(のみ $950.00)