Hello!
Would like to ask if someone can help me create a VBA macro that will email the contents of a table to the recipients.
For example, the table in excel sheet will look like:
And the email body will be like below:
Hello [Requestor] (in this case, John Doe),
Please see status of your incident requests below:
Thank you
--------------
And will email another message but this time for William Doe
Hello [Requestor] (in this case, William Doe),
Please see status of your incident requests below:
Thank you
--------------
The table can contain as much as 50 records and should be able to send all the emails to the intended recipients.
Thank you in advance!
Would like to ask if someone can help me create a VBA macro that will email the contents of a table to the recipients.
For example, the table in excel sheet will look like:
Requestor | Issue Title | Issue Number | Status | |
John Doe | jd@mail.com | wrong name | 1231231 | Resolved |
John Doe | jd@mail.com | wrong address | 1231232 | Resolved |
William Doe | wd@mail.com | wrong name | 1231233 | Pending |
And the email body will be like below:
Hello [Requestor] (in this case, John Doe),
Please see status of your incident requests below:
Requestor | Issue Title | Issue Number | Status | |
John Doe | jd@mail.com | wrong name | 1231231 | Resolved |
John Doe | jd@mail.com | wrong address | 1231232 | Resolved |
Thank you
--------------
And will email another message but this time for William Doe
Hello [Requestor] (in this case, William Doe),
Please see status of your incident requests below:
Requestor | Issue Title | Issue Number | Status | |
William Doe | wd@mail.com | wrong name | 1231233 | Pending |
Thank you
--------------
The table can contain as much as 50 records and should be able to send all the emails to the intended recipients.
Thank you in advance!