Quantcast
Channel: PDFCreator English - pdfforge forums
Viewing all articles
Browse latest Browse all 1241

Email client parametering via COM is not working

$
0
0

@macok wrote:

Hi,

I have to create .pdf files and sending it via default Email client in Visual Foxpro.
(Windows 7 + Live mail + PDFCreator 2.4.1 Build 13)

oPDQ=CREATEOBJECT("PDFCreator.JobQueue")
oPDQ.Initialize()

set printer to name ('PDFCreator_mail')
report form ko noconsole to printer && sending printing job to PDF

if oPDQ.WaitForJob(10)
job=oPDQ.NextJob
job.SetProfileSetting("OpenViewer","False") && it is the last point, that is good
job.SetProfileSetting("EmailClient.Enabled", "True") && here i get an error message.
job.SetProfileSetting('EmailClient.Subject','Test Subject')
job.SetProfileSetting('EmailClient.Message','Test Body')
job.SetProfileSetting('EmailClient.Recipients','mak22@gmail.com')

erase ('H:\Masol\Testpdf.pdf')
job.convertTo('H:\Masol\Testpdf.pdf')

if !job.IsFinished .or. !job.IsSuccessful
=messagebox('Error')
endif
else
?'Error:'+str(oPDQ.Count)
endif
oPDQ.ReleaseCom


Everything is working good until that line:
job.SetProfileSetting("EmailClient.Enabled", "True")

Error message:
OLE IDispatch exception code 0 from
PDFCreator.ComImplementation: The property
'EmailClient.Enabled' does not exist.

If I skip the 4 email parameter rows, the rest is running smoothly. (But no email is sending)

Please help me,
Best regards, Andras

Posts: 5

Participants: 3

Read full topic


Viewing all articles
Browse latest Browse all 1241

Trending Articles