Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
JPL42  
#1 Posted : Friday, March 15, 2013 5:02:02 PM(UTC)
JPL42

Rank: Newbie

Groups: Registered
Joined: 3/15/2013(UTC)
Posts: 2
Man
Location: Toronto

I am using COM-compliant language (xBase++) for Win32, and deploying with Installshield. What DLLs do I need to include in the installer? Do I need only to copy EASendMailObj.dll and register it as a COM server on the target machine?
ivan  
#2 Posted : Saturday, March 16, 2013 5:27:38 PM(UTC)
ivan

Rank: Administration

Groups: Administrators
Joined: 11/11/2010(UTC)
Posts: 1,148

Thanks: 9 times
Was thanked: 54 time(s) in 54 post(s)
JPL42 wrote:
I am using COM-compliant language (xBase++) for Win32, and deploying with Installshield. What DLLs do I need to include in the installer? Do I need only to copy EASendMailObj.dll and register it as a COM server on the target machine?


Yes, you are right

1. copy easendmailobj.dll to destination machine. (run-time file of EASendMail ActiveX Object)
2. run "Regsvr32 [path]\easendmailobj.dll" under dos prompt. (register EASendMail ActiveX Object as com object)

Windows x64(AMD64)

For VBScript/ASP application on Windows x64 platform.
For Visual C++, Delphi application compiled to x64 native code.
Please use the dll in EASendMail installation path\x64\easendmailobj.dll (easendmailobj.dll for x64).
For Visual Basic 6.0 application, because it is always 32bit application, so it can work fine without EASendMail ActiveX Object X64 File.
JPL42  
#3 Posted : Saturday, March 16, 2013 6:35:44 PM(UTC)
JPL42

Rank: Newbie

Groups: Registered
Joined: 3/15/2013(UTC)
Posts: 2
Man
Location: Toronto

Thanks!
darshan  
#4 Posted : Monday, April 29, 2013 10:31:03 PM(UTC)
darshan

Rank: Newbie

Groups: Registered
Joined: 4/29/2013(UTC)
Posts: 3
Location: india

i want to know what is the trial period of ESsendmail object library ?
presently i am using it on
"tryit" license
ivan  
#5 Posted : Wednesday, July 10, 2013 4:48:36 AM(UTC)
ivan

Rank: Administration

Groups: Administrators
Joined: 11/11/2010(UTC)
Posts: 1,148

Thanks: 9 times
Was thanked: 54 time(s) in 54 post(s)

Registration-free COM with Manifest File


Registration-free COM is a mechanism available on the Microsoft Windows XP (SP2 for .NET-based components) and Microsoft Windows Server 2003 platforms. As the name suggests, the mechanism enables easy (for example, using XCOPY) deployment of COM components to a machine without the need to register them.

With Registration-free COM, you don't have to use "regsvr32" to register the dll as COM object, you also don't need to worry other version of this COM installed on the same machine overwrite your current version.

We strongly recommend that you use Registration-free COM to distribute EASendMail ActiveX Object with your standard exe application. ASP, VBScript or other script application is not suitable with this feature.

Using Manifest File

For standard exe application, you just need to create a manifest file like this: Open notepad or other text editor, copy/paste the following content to the editor.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<file name="EASendMailObj.dll" hashalg="SHA1">
<comClass clsid="{DF8A4FE2-221A-4504-987A-3FD4720DB929}"
tlbid="{8B5A2BD0-5638-4CCA-A7FF-91B9E6768AC4}" description="Mail Class"></comClass>
<comClass clsid="{FF80631D-E750-4C67-AFC3-5170AB72518B}"
tlbid="{8B5A2BD0-5638-4CCA-A7FF-91B9E6768AC4}" description="FastSender Class"></comClass>
<comClass clsid="{EAFC4EAA-9390-492A-8E53-E179527780F6}"
tlbid="{8B5A2BD0-5638-4CCA-A7FF-91B9E6768AC4}" description="Certificate Class"></comClass>
<comClass clsid="{036C2F8C-8D3C-4F4B-9B36-3B6F1D29C0B4}"
tlbid="{8B5A2BD0-5638-4CCA-A7FF-91B9E6768AC4}" description="CertificateCollection Class"></comClass>
<typelib tlbid="{8B5A2BD0-5638-4CCA-A7FF-91B9E6768AC4}" version="1.0" helpdir="" flags="HASDISKIMAGE"></typelib>
</file>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker" uiAccess="false"></requestedExecutionLevel>
</requestedPrivileges>
</security>
</trustInfo>
<comInterfaceExternalProxyStub name="IMail" iid="{1AD28FC9-0C71-4E89-85C9-CAECDE8BE3AB}"
tlbid="{8B5A2BD0-5638-4CCA-A7FF-91B9E6768AC4}" proxyStubClsid32="{00020424-0000-0000-C000-000000000046}"></comInterfaceExternalProxyStub>
<comInterfaceExternalProxyStub name="ICertificate" iid="{A2809780-C98E-4C6D-A552-DAB146D4AD12}"
tlbid="{8B5A2BD0-5638-4CCA-A7FF-91B9E6768AC4}" proxyStubClsid32="{00020424-0000-0000-C000-000000000046}"></comInterfaceExternalProxyStub>
<comInterfaceExternalProxyStub name="ICertificateCollection" iid="{DC8D5635-B8E7-441E-B550-CE1BF3BA5C55}"
tlbid="{8B5A2BD0-5638-4CCA-A7FF-91B9E6768AC4}" proxyStubClsid32="{00020424-0000-0000-C000-000000000046}"></comInterfaceExternalProxyStub>
<comInterfaceExternalProxyStub name="IFastSender" iid="{92298BE3-ADEC-438F-800C-CF6311A7DF1D}"
tlbid="{8B5A2BD0-5638-4CCA-A7FF-91B9E6768AC4}" proxyStubClsid32="{00020424-0000-0000-C000-000000000046}"></comInterfaceExternalProxyStub>
</assembly>


Then save it as yourappname.exe.manifest. For example, your application exe file is: myproject1.exe, then save it as myproject1.exe.manifest.

Finally, copy myproject1.exe, myproject1.exe.manifest and EASendMailObj.dll to the same folder on target machine, your application can use EASendMail ActiveX Object directly without COM-registration.

To learn more detail, please have a look at:
http://www.emailarchitec...ail/sdk/?ct=object_reg_a

Edited by user Wednesday, July 10, 2013 4:49:43 AM(UTC)  | Reason: Not specified

ivan  
#6 Posted : Wednesday, July 10, 2013 4:50:32 AM(UTC)
ivan

Rank: Administration

Groups: Administrators
Joined: 11/11/2010(UTC)
Posts: 1,148

Thanks: 9 times
Was thanked: 54 time(s) in 54 post(s)
Originally Posted by: darshan Go to Quoted Post
i want to know what is the trial period of ESsendmail object library ?
presently i am using it on
"tryit" license


The trial period is 30 days.
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

Powered by YAF.NET | YAF.NET © 2003-2024, Yet Another Forum.NET
This page was generated in 0.109 seconds.

EXPLORE TUTORIALS

© All Rights Reserved, AIFEI Software Limited & AdminSystem Software Limited.