If someone could please help, at a lost.
I am currently making changes to an existing database. One of the requirements is to change the [Path] to a hyperlink when it auto populates in Outlook.
The existing code works perfectly. The end user can paste the information in the database and the path is followed but not in the email.
I would like the [Path] to populate as a hyperlink in the email.
below is the code.
Thanks for your help.
email_subject = "PLEASE NOTE: Changes for Section #" & [Request Number].Value & " - " & [Request Title].Value
email_body = "Please make note of the following changes to the request mentioned below:"
email_body = email_body & Chr(10) & Chr(13)
email_body = email_body & Chr(10) & Chr(13)
email_body = email_body & "Please review the latest version of your request form and reply with your approval." & Chr(13) & Chr(10)
email_body = email_body & Chr(13) & Chr(10)
email_body = email_body & [Path]
email_body = email_body & Chr(10) & Chr(13)
email_body = email_body & "Request #: " & [Request Number].Value & Chr(13)
email_body = email_body & "Request Name: " & [Request Title].Value & Chr(13)
email_body = email_body & "QA Due Date: " & QA_Due_Date.Value & Chr(13)
email_body = email_body & "WF Due Date: " & WF_Due_Date.Value & Chr(13)
email_body = email_body & "File Due Date: " & File_Due_Date.Value & Chr(13)
email_body = email_body & "Launch Date: " & Launch_Date.Value & Chr(13) & Chr(10)
email_body = email_body & "Developer: " & Developer.Value & Chr(13)
email_body = email_body & "QA Assigned To: " & QAer.Value & Chr(13) & Chr(10)
email_body = email_body & Chr(13) & Chr(10) & Chr(13) & Chr(10)