I am creating reports (using Crystal Reports XI) to include names or employees managers with hyperlinks to email. I also want the subject automatically added when the managers name is clicked on.
Here is what I have ON HOVER
Here is what I have ON CLICK
‘mailto:’+LEFT({Employees.First_Name},1)+
LEFT({Employees.Last_name},10)+
‘@company.com?subject=Your attention is required…?message=Please send us your updated schedules as soon as possible. Thank you,’+
‘Scheduling Department’
The questions is, what is the cariable to pass the message, I guessed ?message, but this did not work. Also, if ?message is possible, can I add carriage return in there. For example, this report is for the sinners that forget to submit schedulers, and the body is the remider, but I wanted to add a closing, like..
Thank you,
Scheduling Department
…which requires carraige returns before thank you and after “than you,”
Thank you in advance.