1: 2: 3: 4: 5: 6: 7: 8: 9:
// Add any attachments if (attachmentsListView.Items.Count > 0) { foreach (ListViewItem AttachmentItem in attachmentsListView.Items) { Attachment attach = new Attachment(AttachmentItem.Tag.ToString()); message.Attachments.Add(attach); } }