B
bojan0810
Hi all
I am using this code for inserting hyperlink to cell and open outlook.
Sub test()
ActiveCell.Hyperlinks.Add ActiveCell, "mailto:" & Email & "?subject=Test: " & PropAdd, "", "", "Send Invoice"
ActiveCell.Hyperlinks(1).Follow
End Sub
Now what I need is instead of subject to show test: in email in outlook, it should show from desired cell.
Also body of email should write something too. For this I just want body of email to say TestBody, and subject to show from cell A1
Thanks
I am using this code for inserting hyperlink to cell and open outlook.
Sub test()
ActiveCell.Hyperlinks.Add ActiveCell, "mailto:" & Email & "?subject=Test: " & PropAdd, "", "", "Send Invoice"
ActiveCell.Hyperlinks(1).Follow
End Sub
Now what I need is instead of subject to show test: in email in outlook, it should show from desired cell.
Also body of email should write something too. For this I just want body of email to say TestBody, and subject to show from cell A1
Thanks