OK...but I dont want to load the file as an attachment.
I want to read, for example \\server\docs\myfile.txt
and than display the contents of file.txt in an email body
> > I would like to build a windows app or service that would read a .txt
> > file and than put the contents of that file in an email and send off
[quoted text clipped - 27 lines]
>
> Onur Güzel
kimiraikkonen - 21 May 2008 17:34 GMT
> OK...but I dont want to load the file as an attachment.
>
[quoted text clipped - 34 lines]
>
> - Show quoted text -
Then you'll send the mail within your application, right?
So, place a richtextbox or textbox to download the content from remote
text file;
Dim myclient As New System.Net.WebClient
textbox1.text = myclient.DownloadString("\\server\docs\myfile.txt")
Now you can set textbox1 as body of your outgoing mail in
MailMessage's constructors:
Dim message As New MailMessage("from", "to", "subject",
textbox1.text)
(see previous post for the rest)
Thanks,
Onur Güzel
Mayur H Chauhan - 21 May 2008 18:03 GMT
in that case read the content from the txt file using StreamReader and
populate message body.
Also the name space is System.Net.Mail.SmtpClient
Mayur
OK...but I dont want to load the file as an attachment.
I want to read, for example \\server\docs\myfile.txt
and than display the contents of file.txt in an email body
On May 21, 11:44 am, kimiraikkonen <kimiraikkone...@gmail.com> wrote:
> On May 21, 6:10 pm, Jason <paul...@excite.com> wrote:
>
[quoted text clipped - 29 lines]
>
> Onur Güzel
kimiraikkonen - 21 May 2008 18:12 GMT
> in that case read the content from the txt file using StreamReader and
> populate message body.
[quoted text clipped - 44 lines]
>
> - Show quoted text -
Yes, my typo, correct one is System.Net.Mail.SmtpClient, thanks for
correcting.
Thanks,
Onur