Is there a way to rename a hyperlink in a SAS generated email?
For example I can run:
filename outbox email
subject="Report website"
to="someone@email.com"
type='text/html';
data _null_;
file outbox;
put ' ';
put "Here is the link to the reports website.";
put ' ';
put 'run;
and the hyperlink works fine, but I have some very long http addresses that I would like to rename.
I've tried changing the
put '
to
put '<a href=" Link</a>
but it hasn't worked.
Any ideas?
For example I can run:
filename outbox email
subject="Report website"
to="someone@email.com"
type='text/html';
data _null_;
file outbox;
put ' ';
put "Here is the link to the reports website.";
put ' ';
put 'run;
and the hyperlink works fine, but I have some very long http addresses that I would like to rename.
I've tried changing the
put '
to
put '<a href=" Link</a>
but it hasn't worked.
Any ideas?