Dear Coders,
iam new to VBA, was trying to automate my work, this is the last step of my 
task, some images are stored at a path ( here the path is in sImgPath ) 
when i try to insert the image in the email, first image is inserted 
properly, but when there is the second iteration, it deletes the previous 
complete email body and insert the new image. i have died trying stuff to 
bypass this issue.
please help me out, would be really grateful to you. ( also i can not 
replications of code as the number of images stored on the path is not 
fixed, it can change on daily basis.)

Thanks in advance.

Here is the code i am using.

Sub Create_Email()

Dim objOL As Object
Dim sImgPath As String
Dim olMail As MailItem
Dim sHi As String
Dim sBody As String
Dim sThanks As String

Dim path_a As String, path_b As String, C_Path As String, path_before As 
String, image_names() As String

path_before = Cells(7, 9).Value

path_a = Cells(7, 10).Value         ' contains path of issues folder
'path_b = Cells(8, 10).Value         ' contais bsc name
C_Path = path_before & "\" & path_a ' Now C_Path has the complete path for 
taking images for attachemnet in the mail

'****** check number of files in the folders


Dim MyFile As String
Dim count As Integer, j As Integer
MyFile = Dir(C_Path & "\" & path_b & "*.jpg")

GoTo Line1
            
            ' this loop will store all the names of images in the folder to 
the array - > image_names()
            
Do While MyFile <> ""
MyFile = Dir
If MyFile = "" Then
GoTo Line2
Else
End If

Line1:
    ReDim Preserve image_names(count)
    image_names(count) = MyFile
    count = count + 1           ' at the end of loop count will contain # 
of images
Loop
'MsgBox j & " files found"

'Creating The EMAIL

Line2:
Set objOL = CreateObject("Outlook.Application")
Set olMail = objOL.CreateItem(olMailItem)
With olMail

.To = "myem...@mydomain.com"
.Subject = "NPO Issue :: Huawei :: " & path_a
For j = 0 To count - 1
sImgPath = C_Path & "\" & image_names(j)
uuu = Mid(sImgPath, InStrRev(sImgPath, "\") + 1)
sHi = "<font size='3' color='black'>" & "Hi," & "<br> <br>" & "Here is the 
required solution: " & "<br> <br>"

' in the variable sImgPath i have the file name along with the extension 
---> .jpg in my case
sBody = "<p align='Left'><img src=" & sImgPath & """ width=700 height= 350 
> <br> <br> <br> <br> <br> <br> <br> <br> "

olMail.HTMLBody = sBody
.Display
Next j
End With

'Free-up the objects
Set olMail = Nothing
Set olApp = Nothing

End Sub


-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups "MS 
EXCEL AND VBA MACROS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to