email with attachment

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

email with attachment

che-8
is there any code to send an email with an attachment?


Reply | Threaded
Open this post in threaded view
|

Re: email with attachment

Steve Alan Waring
> is there any code to send an email with an attachment?

If you are happy to use CDO, then extending the CDO package comment
example:

CDOIMessage new.
    from: '=removed=';
    to: '[hidden email]';
    subject: 'Re: Your order';
    textBody: 'Hi Bill, your order for Dolphin Smalltalk has been
dispatched. Enjoy!'.
    addAttachment: 'c:\DolphinSetup.exe' userName: nil password: nil;
    Send

CDO is great for a server environment, but it does require win2k or
later.

Steve
--
[hidden email]


Reply | Threaded
Open this post in threaded view
|

Re: email with attachment

Christoph J. Bachinger
In reply to this post by che-8
Hi che

> is there any code to send an email with an attachment?

See the following link maybe it helps

http://www.smalltalking.net/Goodies/Dolphin/index.htm

cjb