https://issues.apache.org/ooo/show_bug.cgi?id=123067

Ariel Constenla-Haile <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |NOTABUG

--- Comment #1 from Ariel Constenla-Haile <[email protected]> ---
(In reply to Zek from comment #0)
>       eMessage.Recipient(eMailAdress)
>       eMessage.Subject("eSubject")
>       eMessage.Attachement(Array(convertToUrl(filepath)))

These are now interface attributes
http://www.openoffice.org/api/docs/common/ref/com/sun/star/system/XMailMessage.html
which are used as properties in AOO Basic:

eMessage.Recipient = eMailAdress
eMessage.Subject = "eSubject"
eMessage.Attachement = Array(convertToUrl(filepath))


And by the way, the service is a new style service, use the constructor instead
of the error-prone string:

Dim oProvider as Object
oProvider = com.sun.star.system.SystemMailProvider.create()

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.

Reply via email to