I was able to get past the body or page border in the email body by using a proc template. Apparently HTML/MSOFFICE2K ODS Meadow style generates a border around the page or body. This proc template got rid of the borders.
PROC TEMPLATE;
DEFINE STYLE STYLES.TEST;
PARENT=STYLES.MEADOW;
CLASS BODY /
HTMLSTYLE="BORDER:NONE";
CLASS SYSTITLEANDFOOTERCONTAINER /
HTMLSTYLE="BORDER:NONE";
CLASS PAGE /
HTMLSTYLE="BORDER:NONE";
END;
RUN;
... View more