Patriot2879
Well-known Member
- Joined
- Feb 1, 2018
- Messages
- 1,259
- Office Version
- 2010
- Platform
- Windows
Hello, good afternoon, i am hoping you can help me please? I have the code below which works great , but i now need to encrypt every email i send, is there anyway this can be added into my code below at all please? i am still fairly new to this and still learning, any help you offer will be greatly appreciated.
HTML:
Private Sub CommandButton1_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 " & Me.TextBox35.Value & "</p>" & _
"<p>" & Me.TextBox33.Value & "</p>" & _
"<p>" & Me.TextBox17.Value & "</p>" & _
"<table border=""1"", cellpadding=""10"", style=background:""#a6bbde"" >" & _
"<tr>" & _
"<th>Date:</th>" & _
"<td>" & Me.TextBox18.Text & "</td><td>" & Me.TextBox19.Text & "</td>" & _
"<td>" & Me.TextBox21.Text & "</td><td>" & Me.TextBox23.Text & "</td>" & _
"<td>" & Me.TextBox25.Text & "</td><td>" & Me.TextBox26.Text & "</td>" & _
"</tr>" & _
"<tr>" & _
"<th>Area:</th>" & _
"<td>" & Me.TextBox9.Value & "</td><td>" & Me.TextBox20.Value & "</td>" & _
"<td>" & Me.TextBox22.Value & "</td><td>" & Me.TextBox24.Value & "</td>" & _
"<td>" & Me.TextBox29.Value & "</td><td>" & Me.TextBox30.Value & "</td>" & _
"</tr>" & _
"</table>" & _
"<br><br><br><br><br><br>" & _
"<p>Many Thanks</p>" & _
"<p>Complex Team</p>" & _
"</body></html>"
aEmail.Recipients.Add (UserForm1.TextBox36.Value)
aEmail.CC = (UserForm1.TextBox37.Value)
aEmail.BCC = ""
aEmail.Subject = "Weekly " & Range("D2").Value
aEmail.Display
Unload Me
End Sub
Last edited: