H
Helmut Weber
Hi all,
i'm generating mass-emails (no spam) programmatically
by using templates (*.oft). This works great, yet it's
been impossible so far, to get the text of subject
from template to appear as the actual mail subject.
Any ideas?
Here is my part of my code (lotus-script), but
not that different from VBA:.
Set oOutlookApp = GetObject(, "Outlook.Application")
Set OItem = oOutlookApp.CreateItemFromTemplate(aTemplate)
' no problem here
With oItem
..To = ' no problem here
..subject = "Testmailing" !!!!
'I want the subject from the template
..body = ' no problem here
..send
End With
i'm generating mass-emails (no spam) programmatically
by using templates (*.oft). This works great, yet it's
been impossible so far, to get the text of subject
from template to appear as the actual mail subject.
Any ideas?
Here is my part of my code (lotus-script), but
not that different from VBA:.
Set oOutlookApp = GetObject(, "Outlook.Application")
Set OItem = oOutlookApp.CreateItemFromTemplate(aTemplate)
' no problem here
With oItem
..To = ' no problem here
..subject = "Testmailing" !!!!
'I want the subject from the template
..body = ' no problem here
..send
End With