S
singh
Hi to all
Scenerio: I have a sheet with full of mailing address and name of that
particular person and a word document in C drive.
Question: Can I create a macro for sending mail to all the person in the
excel sheet with name as salutation in mail and attach the word document?
Column A contains Name of person
Column B contains Email ID
For sending mail to a particular person I generally use the below code:
Sub SendActiveWorkbook()
ActiveWorkbook.SendMail _
Recipients:="(e-mail address removed)", _
Subject:="As per the mail content " & Format(Date, "dd/mmm/yy")
End Sub
This is only for the active sheet. I do not know how to attach word document
through macro.
Thanks in advance
Scenerio: I have a sheet with full of mailing address and name of that
particular person and a word document in C drive.
Question: Can I create a macro for sending mail to all the person in the
excel sheet with name as salutation in mail and attach the word document?
Column A contains Name of person
Column B contains Email ID
For sending mail to a particular person I generally use the below code:
Sub SendActiveWorkbook()
ActiveWorkbook.SendMail _
Recipients:="(e-mail address removed)", _
Subject:="As per the mail content " & Format(Date, "dd/mmm/yy")
End Sub
This is only for the active sheet. I do not know how to attach word document
through macro.
Thanks in advance