Private Sub CommandButton3_Click()
Dim aOutlook As Object
Dim aEmail As Object
Dim rngeAddresses As Range, rngeCell As Range, strRecipients As String
Set aOutlook = CreateObject("Outlook.Application")
Set aEmail = aOutlook.CreateItem(0)
aEmail.HTMLBody = "<html>******>" & _
"<p>Hi All, Please see below todays handover." & Worksheets("Northants").Range("A1").Value & "</p>" & _
"<p>" & Me.TextBox7.Value & Me.TextBox9.Value & Me.TextBox8.Value & "</p>" & _
"<table border=""1"", cellpadding=""10"", style=background:""#a6bbde"" >" & _
"<tr>" & _
"<th>Replans:</th>" & "<td>" & Worksheets("Northants").Range("B8").Value & "</td>" & "<th>Replans:</th>" & "<td>" & Worksheets("Northants").Range("F8").Value & "</td>" & _
"</tr>" & _
"<tr>" & _
"<th>Timeband Slides:</th>" & "<td>" & Worksheets("Northants").Range("B9").Value & "</td>" & "<th>Timeband Extensions:</th>" & "<td>" & Worksheets("Northants").Range("F9").Value & "</td>" & _
"</tr>" & _
"<tr>" & _
"<th>Jobs Unscheduled:</th>" & _
"<td>" & Worksheets("Northants").Range("B10").Value & "</td>" & _
"</tr>" & _
"</table>" & _
"<br>" & _
"<p>" & Me.TextBox4.Value & "</p>" & _
"<p>" & Me.TextBox2.Value & "</p>" & _
"<p>" & Me.TextBox5.Value & "</p>" & _
"<p>" & Me.TextBox1.Value & "</p>" & _
"<p>" & Me.TextBox6.Value & "</p>" & _
"<p>" & Me.TextBox3.Value & "</p>" & _
"<p>Many Thanks</p>" & _
"<p>Northants and Bucks Jeopardy Manager</p>" & _
"</body></html>"
aEmail.Recipients.Add (Worksheets("Email Links").Range("A2").Value)
aEmail.CC = (Worksheets("Email Links").Range("B2").Value)
aEmail.BCC = ""
aEmail.Subject = "JM Handover for - " & Range("E1").Value
aEmail.Display
End Sub