Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem attching with email

Status
Not open for further replies.

hlybbi

Programmer
Joined
Mar 19, 2003
Messages
91
Location
IS
is it not possible to attche a file with out writing it fyrst to my website

string strBody = "text ";

MailMessage msgMail = new MailMessage();
msgMail.To = "address@address";
msgMail.From = "address@address";
msgMail.Subject = "subject";
msgMail.BodyFormat = MailFormat.Html;
msgMail.Body = strBody;
msgMail.Attachments.Add(new MailAttachment(attach.PostedFile));

SmtpMail.Send(msgMail);

Best regards Hlynur
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top