Sub Send_Email()
Dim sh As Worksheetenter code here
sh = ThisWorkbook.Sheets("CREmail")
With Selection.Parent.MailEnvelope.Item
.TO = ClientRegistration.txtemail.Value
.Subject = "Thank You for Registration"
.Attachments.Add sh, 1, 0
.HTMLBody = "<img src=""cid:WoService.png""height=520 width=750>"
"Dear" < ClientRegistration.txtname.Value >
"Thank you For Registration"
"Regards"
"Parth"
.Display
.Send
End With
MsgBox "Done"
End Sub
i want email text body as below
Logo at Center"Image"
Dear "Client Name" 'from userform
Welcome to Our Plateform
Regards,
Parth
` – braX Jul 29 '20 at 21:36