Logo
제품 지원 연락처 회사 소개
arrow1 File Converters
arrow1 TIFF and PDF apps
arrow1 Forensic
arrow1 Freeware

귀하의 솔루션에 Mail Converter Pro 추가

 

시스템에서 이메일 변환기가 누락된 부분인가요? 우리 사용하기 쉬운 솔루션을 도입하고 몇 줄의 코드를 추가하세요 (PHP, C++, C# 등의 샘플을 제공합니다) 그리고 첨부 파일과 함께 이메일을 PDF, TIFF, JPEG, DOC, HTML, EML, PST 파일로 저장하세요.

mail converter sdk

우리 고객들이 말합니다:
"저는 제품에 매우 만족합니다. 지금까지 모든 초기 QA 테스트를 통과했습니다. 이 도구를 프로그래밍적으로 사용하여 큰 맞춤형 독립형 레거시 콘텐츠 관리 시스템 마이그레이션의 일부로 사용하고 있습니다. 현재 레거시 시스템은 MSG 포맷으로 이메일 콘텐츠를 저장합니다. 이 콘텐츠에 더 표준화된 접근을 제공하기 위해 마이그레이션 중 EML 및 PDF 포맷으로 제공할 것을 권장했습니다. 여기에 귀하의 도구가 들어맞습니다. 이 고객을 위해 이 작업을 용이하게 하기 위해 귀하의 도구를 우리 마이그레이션 프로그램에 성공적으로 통합했습니다."

Jeff Primeau
수석 컨설턴트
Decision Labs Inc.
www.decisionlabs.com

Total Mail Converter ProX는 이메일 마이그레이션 및 보관, 법적 문제, 전자 문서 시스템에 이메일 추가 또는 정보 요청의 자유에 적합합니다.

  • 서버 라이선스:
    Total Mail Converter ProX가 서버 라이선스 조건으로 허가된 경우, 한 회사에서 최대 100명의 직원이 사용할 수 있는 한 서버에 라이선스 소프트웨어를 배포할 수 있는 양도 불가, 비독점적, 영구적인 권리가 부여됩니다. 하나의 서버 라이선스는 한 서버에 제한됩니다. ActiveX가 포함되어 있습니다.

  • 로열티 프리 라이선스:
    Total Mail Converter ProX를 귀하의 제품에 구현하고 제 3자에게 그러한 제품의 일환으로 프로그램을 배포할 수 있습니다. RFL은 프로젝트별로 라이선스가 부여됩니다. 귀하의 고객은 CoolUtils 앱이 내부에 있다는 것을 인식하지 못하며 추가 등록이 필요하지 않습니다. 귀하의 시스템에 이메일 변환 기능을 추가하는 가장 쉬운 방법입니다.

Coolutils 변환기는 가장 비용 효율적인 솔루션입니다. 가격 책정이 매우 유연하며 직원 5명의 소기업 및 Deloitte 또는 PricewaterhouseCoopers와 같은 대기업에 적합합니다. 서버 라이선스는 단 $359.90부터 시작합니다!

Total Mail Converter Pro X 예제

Total Mail Converter Pro X와 .NET으로 메일 파일 변환하기


string src  = @"C:\test\Source.eml";
string dest = @"C:\test\Dest.pdf";

var cnv = new MailConverterX();
cnv.Convert(src, dest, "-cPDF -attach -docs -log c:\\test\\Mail.log");

if (!string.IsNullOrEmpty(cnv.ErrorMessage))
    throw new Exception(cnv.ErrorMessage);

Total Mail Converter Pro X로 웹 서버에서 메일 파일 변환하기

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 srcPath = $@"{assemblyDirectoryPath}\src\sample.msg";
                var outPath = Path.GetTempFileName() + ".pdf";
                startInfo.FileName = executablePath;

                if (File.Exists(outPath))
                {
                    File.Delete(outPath);
                }

                if (File.Exists(executablePath) && File.Exists(srcPath))
                {
                    sbLogs.AppendLine("files exists...");
                }
                else
                    sbLogs.AppendLine("EXE & source files NOT exists...");
                startInfo.WindowStyle = ProcessWindowStyle.Hidden;
                startInfo.Arguments = $"{srcPath} {outPath} -cPDF -attach -docs";
                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);
        }
    }
Azure Functions에 대한 자세한 정보.

Total Mail Converter Pro X로 웹 서버에서 메일 파일 변환하기

dim C
Set C=CreateObject("MailConverterPro.MailConverterX")
C.Convert "c:\test\source.eml", "c:\test\dest.pdf", "-cPDF -attach -docs -log c:\Mail.log"
Response.Write C.ErrorMessage
set C = nothing

ASP에서 결과 PDF를 직접 스트리밍하기

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 -attach -docs -log c:\html.log")
set C = nothing

PHP와 Total Mail Converter Pro X로 MSG 및 EML 파일 변환하기

$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, "-cPDF -attach -docs -log c:\\Mail.log");
if (file_exists($dest)) echo "OK"; else echo "fail:".$c->ErrorMessage;

Total Mail Converter Pro X와 Ruby로 메일 파일 변환하기

require 'win32ole'
c = WIN32OLE.new('MailConverterPro.MailConverterX')

src = "C:\\test\\test.eml"
dest = "C:\\test\\test.pdf"

c.convert(src, dest, "-cPDF -attach -docs -log c:\\test\\Mail.log")

if not File.exist?(dest)
  puts c.ErrorMessage
end

Total Mail Converter Pro X와 Python으로 메일 파일 변환하기

import win32com.client
import os.path

c = win32com.client.Dispatch("MailConverterPro.MailConverterX")

src  = "C:\\test\\test.eml"
dest = "C:\\test\\test.pdf"

c.convert(src, dest, "-cPDF -attach -docs -log c:\\test\\Mail.log")

if not os.path.exists(dest):
    print(c.ErrorMessage)

Pascal과 Total Mail Converter Pro X로 메일 파일 변환하기

uses Dialogs, Vcl.OleAuto;

var
  c: OleVariant;
begin
  c := CreateOleObject('MailConverterPro.MailConverterX');
  c.Convert('c:\test\source.eml', 'c:\test\dest.pdf', '-cPDF -attach -docs -log c:\test\Mail.log');
  if c.ErrorMessage <> '' then
    ShowMessage(c.ErrorMessage);
end;

Total Mail Converter Pro X로 웹 서버에서 MSG 및 EML 파일 변환하기

var c = new ActiveXObject("MailConverterPro.MailConverterX");
c.Convert("C:\\test\\source.msg", "C:\\test\\dest.pdf", "-cPDF -attach -docs");
if (c.ErrorMessage != "")
  alert(c.ErrorMessage)

Total Mail Converter Pro X와 Perl로 메일 파일 변환하기

use Win32::OLE;

my $src  = "C:\\test\\test.eml";
my $dest = "C:\\test\\test.pdf";

my $c = CreateObject Win32::OLE 'MailConverterPro.MailConverterX';
$c->convert($src, $dest, "-cPDF -attach -docs -log c:\\test\\Mail.log");
print $c->ErrorMessage if -e $dest;

 

지금 작업을 시작하세요!

무료 평가판을 다운로드하고 몇 분 만에 파일을 변환하세요.
신용카드나 이메일이 필요하지 않습니다.

⬇ 무료 평가판 다운로드 Windows 7/8/10/11 • 305 MB

Support
서버용 메일 변환기 프로 Preview1
서버용 메일 변환기 프로 Preview2
서버용 메일 변환기 프로 Preview3

관련 주제

최신 뉴스

뉴스레터 구독

걱정 마세요, 스팸은 없습니다.


© 2026. 모든 권리 보유. CoolUtils File Converters

Cards