In an email created by SAS (code below), is there an equivalent to the FLYOVER option? Running on SAS 9.4M4.
filename outbox email
to=("jon.dow@domain.com")
type='text/html'
subject="this is a test";
ods html body=outbox rs=none style=statdoc;
proc report data=sashelp.class split=']' missing nowd
style(column)=[just=l]
style(header)=[fontweight=bold just=c cellwidth=1in]
style(report)=[font_size=2];
title;
footnote;
column
name sex age;
define name / display "Name" style(header)=[cellwidth=1.6in];
define sex / display 'Sex';
define age / display 'Age' style(column)=[just=r];
compute sex;
if sex='M' then do;
call define('name', "style", "style=[background=cyan flyover='male']");
end;
endcomp;
run;
ods html close;