Dilema, need a macro to format incomign emails

  • Thread starter Thread starter Danish
  • Start date Start date
D

Danish

Hi Guys

Im a VBA newb and I have a little job to do and dont know to start.
Basically, I have a load of incoming emails sent to an inbox daily,
these are corrspondence letters sent by a 3rd party application. They
are received in outlook richtext format, completely aligned to the
left.

I need to create a macro so I can go into the inbox at the end of the
day and select all the emails to print to my desired justification. 1
1/2 inches from the left and 1 3/4 inches from the top. The reason
being is because the address needs to match up with the window on the
envelop.

What is the best way to go about this? Also it must print without a
message header which is obvious.

Any help would be GREATLY appreciated.

Thanks,

DC
 
Outlook VBA's Print method only prints an item according to the default
print settings, which can't be changed with any code.

Your best bet would be to the save the e-mails as an .rtf file, and open
them in Word. You can write Word VBA macros to finely tune your printing
settings.
 
Back
Top