Put this in Master Sub
With Tbl_HoldRep
ToAdd = .Cells(u, 11).Value
ToAdd = ToAdd & IIf(.Cells(u, 13).Value <> "", ";" & .Cells(u, 13).Value, "")
ToAddcc = .Cells(u, 14).Value
ToAddcc = ToAddcc & IIf(Tbl_HoldRep.Cells(u, 15).Value <> "", ";" & .Cells(u, 15).Value, "")
ToAddcc = ToAddcc & IIf(Tbl_HoldRep.Cells(u, 16).Value <> "", ";" & .Cells(u, 16).Value, "")
End With
This will preserve the default signature if you have one set up in Outlook for new emails.
Sub Send_mail() procedure
'.cc =
'Message
.Display 'Display first to populate the default signature
.Body = MailBodyStrg & .Body
'Read receipts turned off
.ReadReceiptRequested = False
'.Send
Bookmarks