c# Programming Glossary: attachmentfilename
Sending email with attachments from C#, attachments arrive as Part 1.2 in Thunderbird http://stackoverflow.com/questions/2825950/sending-email-with-attachments-from-c-attachments-arrive-as-part-1-2-in-thunde string recipient string subject string body string attachmentFilename SmtpClient smtpClient new SmtpClient NetworkCredential basicCredential.. false message.Body body message.To.Add recipient if attachmentFilename null message.Attachments.Add new Attachment attachmentFilename.. null message.Attachments.Add new Attachment attachmentFilename smtpClient.Send message Thanks for any help. c# email smtp..
|