Karthik Thandapani
Member
Hi,
My requirement is to send an email notification to a group of users directly from the excel framework. Presently I've the below code;
With OutMail
.To = Range("E7").Value
.CC = "tkar@outlook.com"
.BCC = ""
.Subject = "Notification from RA tool"
.HTMLBody = RangetoHTML(Rng)
.Display
End With
I have a list of user email IDs populating in few cells & that needed to be added with a ";" at the end of each email addresses. Can anyone please help me with a vba snippet to loop column"N" get email ID & concat with ";" and add in range"E7" ?
Thanks in advance. Please see the attached file.
My requirement is to send an email notification to a group of users directly from the excel framework. Presently I've the below code;
With OutMail
.To = Range("E7").Value
.CC = "tkar@outlook.com"
.BCC = ""
.Subject = "Notification from RA tool"
.HTMLBody = RangetoHTML(Rng)
.Display
End With
I have a list of user email IDs populating in few cells & that needed to be added with a ";" at the end of each email addresses. Can anyone please help me with a vba snippet to loop column"N" get email ID & concat with ";" and add in range"E7" ?
Thanks in advance. Please see the attached file.