How to send message with multiply attachments - WeOnlyDo Discussion board

How to send message with multiply attachments (General questions)

by Alex, Tuesday, June 12, 2007, 19:07 (6374 days ago)

Hello,

I need to send message with several attachments. Does wodSmtp component support it?

Thanks,
Alex

Re: How to send message with multiply attachments

by woddrazen, Tuesday, June 12, 2007, 19:32 (6374 days ago) @ Alex

Hi Alex,


Yes of course you can add as many files in attachment as you want. For each file you should call wodSMTP SmtpMsg Object Attach Method which will add file to your message attachment.
[code]
...
wodSmtp1.Message.Attach c:\file1.exe
wodSmtp1.Message.Attach c:\file2.exe

wodSmtp1.SendMessage [/code]
More help for Attach Method you can find here:
http://www.weonlydo.com/Smtp/Help/WODSMTPLib~SmtpMsg~Attach.html

Let us know ho wit goes.


Regards,
Drazen

Re: How to send message with multiply attachments

by Adam, Thursday, August 26, 2010, 22:46 (5202 days ago) @ woddrazen

Hi Alex,


Yes of course you can add as many files in attachment as you want. For each file you should call wodSMTP SmtpMsg Object Attach Method which will add file to your message attachment.
[code]
...
wodSmtp1.Message.Attach c:\file1.exe
wodSmtp1.Message.Attach c:\file2.exe

wodSmtp1.SendMessage [/code]
More help for Attach Method you can find here:
http://www.weonlydo.com/Smtp/Help/WODSMTPLib~SmtpMsg~Attach.html

Let us know ho wit goes.


Regards,
Drazen

Every time I use the wodSmtp1.Message.Attach a second time I get the error Failed to open attachment file . In my test I can send each of the attachments individually I just can not add them both to the same message.

-Adam

Re: How to send message with multiply attachments

by wodDamir, Thursday, August 26, 2010, 23:04 (5202 days ago) @ Adam

Adam,

I just tried calling Attach method twice, one after another, and the attachment was correctly added to the message.

Can you perhaps show me the code you're using to attach multiple attachments?

Regards,
Damba