I'm having trouble coding some new items into a program of mine. The program loops through you Inbox looking for emails that are UNREAD and have a certain subject line.

The subject line in this case, is going to search for:
"FAX TO: ###########" (actually, it just searches for FAX TO).

Next step, I need the selected email to be FORWARDED to the fax number in the subject line - including attachments.

In my code - I've already got the message selected - but I can't figure out how to programmatically forward it?

I need explicit code help with the following:
1) Check to make sure there are 10 digits in the original subject line. If not - bail out and ignore that message.
2) Trim the subject line and save the phone number to a string
3) Forward the message (plus attachments) to the [email protected]


I'm assuming I'll need to create a new Outlook.MailItem, but I'm not sure if I need to. Is there just some code I'm missing so I don't have to COPY the contents of the current MailItem to a new one.