Hello friends.
So I have a report that sends emails via SMTP.
It is looking at the record link table and sends an email with the info and the URL on that record.
Smth like this.
smtp.CreateMessage('NAV',fromuser."E-Mail",touser."E-Mail",'Note from my Notifications in NAV',"Record Link".URL1,TRUE);
smtp.Send;
"Record Link"."E-mail Sent" :=TRUE;
I want the URL to be a hyperlink, meaning, I want the recipient of the email to be able to click on it.
Any ideas how I can accomplish that ??
Thanks.
0
Answers
Create variable MyLink of type Text, assign a html 'anchor' to that variable, and send that:
Thanks