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
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