웹 서버에서 MSG 및 EML 파일 변환
Windows
2000/2003/Vista/7/8/10/11
and
2012/2016/2019/2022 Server
and
Docker/Citrix/Wine
Total Mail Converter Pro X는 MSG 및 EML 파일을 PDF, DOC, RTF, TXT, HTML, XHTML, TIFF, RTF 문서 및 TIFF; JPEG 이미지로 Windows 웹 서버에서 변환합니다. 이 강력한 유틸리티는 이메일과 함께 첨부된 파일도 변환할 수 있습니다. 온라인에서 사용하도록 설계된 서버 버전은 그래픽 사용자 인터페이스가 없으므로 장면 뒤에서 조용히 실행되어 사용자가 작업 흐름을 방해받지 않도록 합니다.
Total Mail Converter Pro X는 GUI를 가진 일반 Total Mail Converter Pro만큼 강력합니다. 원하는 만큼 많은 이메일을 한 번에 변환할 수 있으며(수십만 개도 가능합니다) 새 이름, 페이지 카운터, 베이트스 스탬핑, 보안 설정 등으로 출력 파일을 향상시킬 수 있습니다.
Total Mail Converter Pro X는 사용자에게 유연성과 유익한 옵션을 제공하는 것에 있어 비할 데 없는 독창적인 서버 기반 이메일 변환기입니다. 여러 가지 다양한 첨부 파일 유형을 처리할 수 있는 다른 프로그램은 없습니다. 30일 동안 전체 버전을 무료로 사용할 수 있습니다. 오늘 무료 체험판을 다운로드하여 사용해 보세요!
string src="C:\\test\\Source.eml"; 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!");
Download .NET Mail Converter Pro 예제
docker run -p 5000:5000 tdhster/mailconverter-api
dim C Set C=CreateObject("MailConverterPro.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("MailConverterPro.MailConverterX") Response.Clear Response.AddHeader "Content-Type", "binary/octet-stream" Response.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
Example PHP: $src="C:\\test\\test.msg"; $dest="C:\\test\\test.pdf"; if (file_exists($dest)) unlink($dest); $c= new COM("MailConverterPro.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('MailConverterPro.MailConverterX') src="C:\\test\\test.eml"; 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("MailConverterPro.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('MailConverterPro.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("MailConverterPro.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 'MailConverterPro.MailConverterX'; $c->convert($src,$dest, "-c TIFF -log c:\\test\\Mail.log"); print $c->ErrorMessage if -e $dest;
"우리는 Total Mail Converter에 매우 만족합니다. 우리는 약 20,000개의 메일을 PDF로 변환하는 데 사용했으며, 특히 중요한 점은 메일의 첨부 파일을 대상 PDF로 변환할 수 있는 기능이었습니다. 20,000개의 메일을 변환하면서, 읽을 수 없는 첨부 파일 때문에 실패한 것은 열 개 정도밖에 없었습니다."
"그래서 우리가 제안하는 유일한 개선점은: 단일 첨부 파일의 변환이 실패할 경우, 전체 메일 파일을 건너뛰지 말고 다른 첨부 파일을 변환하여 단일 손상된 첨부 파일 없이 PDF를 완성하는 것입니다. 좋은 작업 계속하세요."
Manuel Schlief | www.darag.de
Docker docker run -p 5000:5000 tdhster/mailconverter-api