Search results

  1. T

    HTML Email (data > 32000 bytes) - Possible VB workaround?

    Ah, I see why I missed that method. The message object you are dealing with there is a CDO message. I think that is the object used when talking directly to Exchange? I am using the Outlook MailItem object to send using Outlook. (sorry, should have been more specific!)...
  2. T

    HTML Email (data > 32000 bytes) - Possible VB workaround?

    Oooooo, I'll try that! Don't know how I missed that method in my investiagtion. Thanks for your time Lee, you've been a great help!
  3. T

    HTML Email (data > 32000 bytes) - Possible VB workaround?

    The temporary text file was one avenue I tried, but I cannot set the property of the object to be a text file. e.g. chMailItem:HTMLBody = C:\mytextfile I could write the HTML file and attach it, but that doesn't achieve the end product I need. Also I cannot build the HTMLBody...
  4. T

    HTML Email (data > 32000 bytes) - Possible VB workaround?

    Thanks for the reply Lee, Unfortunately the HTMLBody is a property of the MailItem and needs to be written to all in one. chMailItem:HTMLBody = vHTMLString. If I try: chMailItem:HTMLBody = vHTMLString1 + vHTMLString2. It doesn't work. Besides, I'm not sure if Progress would allow such...
  5. T

    HTML Email (data > 32000 bytes) - Possible VB workaround?

    Progress v91d06, XP, Server 2003, Citrix Metaframe, Office 2003 We are trying to build a html email using Outlook com objects. We are loading the full html body into a character variable. When reaching the 32000 byte limit we get the following error... REPLACE/CONCAT may not result in data >...
  6. T

    Repeating Page

    We have a report sorted by Order No with several Lines (potentially spanning a number of pages) making up 1 Order. These orders are printed in batches. What we want to do is at the end of each order, print a copy of the first page with a watermark on it. We're not too fussy about the waternark...
  7. T

    Email tracking

    I have replied privately about COM object options, but here is some code for POP3 message retrieval http://amduus.com/OpenSrc/SrcLib/Mail/pop3/
  8. T

    Email tracking

    If the request recieved aknoledgement property is set by the server, how can I read this from Progress? Do I need POP3 enabled on the exchange server for this?
  9. T

    Email tracking

    We are using SMTPmail.p to email purchase orders and GRNs. We'd like to be able to ensure the email has been read at the site and produce some sort of reporting based on this. At the moment, each email that is sent has a request for a read receipt. This works and sends the receipt back to the...
Back
Top