vote up 0 vote down star

I am writing a simple email helper class that will be called by a Windows service. When I test though the email attachment is not sending with the rest of the email.

mailAttachmentFilePath is an ArrayList (just for clarification) and mail represents MailMessage class.

if (mailAttachmentFilePath.Count > 0)
        {
            foreach (string file in mailAttachmentFilePath)
            {
                Attachment data = new Attachment(file);
                mail.Attachments.Add(data);
                data.Dispose();
            }
        }

I am certain I am missing something but, I don't know what it is...

flag

78% accept rate

2 Answers

vote up 2 vote down check

Remove the data.Dispose(). The attachments are being added by reference so when you call dispose it's actually releasing the attached file. You also don't really need the if statement. Try this:

    foreach (string file in mailAttachmentFilePath)
    {
        Attachment data = new Attachment(file);
        mail.Attachments.Add(data);
    }
link|flag
vote up 5 vote down

Do the data.Dispose() AFTER you send the email :D.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.