Nitesh Khot
Member
Hi..
Below code works fine..but unable to prevent from repeating image in outlook..is there any way to sort out this issue..
Thanks in Advance....
Nikh
Below code works fine..but unable to prevent from repeating image in outlook..is there any way to sort out this issue..
Code:
sub mail()
Dim olApp As Outlook.Application
Dim olMail As MailItem
Set olApp = New Outlook.Application
Set olMail = olApp.CreateItem(olMailItem)
With olMail
.BCC = Recip
.Subject = "Welcome!"
MyHTML ="<body background=""C:\Users\nikh\Desktop\Untitled.jpg""; center top no-repeat;"
.HTMLBody = MyHTML & "Welcome Customer,"
.Display
End With
End If
Set olMail = Nothing
Set olApp = Nothing
End Sub
Thanks in Advance....
Nikh