We have a Group email we send emails out with and I have a VBA code to pull those emails up, but they are always preset with my personal email and my signature. How could I add to the current code to have a different email and remove my signature.
Very new to VBA. Thanks in advance

Sub Quickturnaround()
    'Open Quick Turnaround email template
    Set temp = Application.CreateItemFromTemplate( _
    "C:\Users\kyle-p\AppData\Roaming\" _
    & "Microsoft\Templates\Quick Turnaround.oft")
    temp.Display
    Set temp = Nothing
End Sub