Finns det någon som vet någon trevlig metod för att skicka med en bild till en e-post via ett formulär? Från http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwebmailmailattachmentclassctortopic.asp Om man då gör om den till VB kan det stämma det jag gjort? Jag får fortfarande fel Denna del är löst nu. NI kan läsa lösningen under tips & tricks under .net allmänt "skicka fil med formulär".bild till epost
Sv: bild till epost
[C#]
//This example shows how to programmatically add attached files
//to a mail lessage.
MailMessage myMail = new MailMessage();
// Concatenate a list of attachment files in a string.
string sAttach = @"C:\images\image1.jpg,C:\images\image2.jpg,C:\images\image3.jpg";
// Build an IList of mail attachments using the files named in the string.
char[] delim = new char[] {','};
foreach (string sSubstr in sAttach.Split(delim))
{
MailAttachment myAttachment = new MailAttachment(sSubstr);
myMail.Attachments.Add(myAttachment);
}
Eller så skickar du bara ett mail som html och lägger in en bild-tagg med url till din webbserver.
/Jon
Sv:bild till epost
<code>
[VB]
//This example shows how to programmatically add attached files
//to a mail lessage.
MailMessage myMail = new MailMessage();
// Concatenate a list of attachment files in a string.
Dim sAttach = @"C:\images\image1.jpg,C:\images\image2.jpg,C:\images\image3.jpg";
// Build an IList of mail attachments using the files named in the string.
Dim delim As new Delim[] {','};
foreach (Dim sSubstr in sAttach.Split(delim))
{
MailAttachment myAttachment = new MailAttachment(sSubstr);
myMail.Attachments.Add(myAttachment);
}
</code>Sv:bild till epost
System.Web.HttpException: Invalid mail attachment 'G:\mm\5.jpg'.
Koden ser ut
<code>
Dim myMail As MailMessage = New MailMessage
Dim iLoop As Integer
Dim sAttach As String = "G:\mm\5.jpg,G:\mm\1.jpg"
Dim delim As Char = ","
Dim sSubstr As String
For Each sSubstr In sAttach.Split(delim)
Dim myAttachments As MailAttachment = New MailAttachment(sSubstr)
myMail.Attachments.Add(myAttachments)
Next
</code>
Allt som ska vara med är med så jag är som ett frågetecken.Sv: bild till epost
MVH
Magnus