I want send reminder email to the same receiver from my outlook send items(its should be replied with old email body and with new note adding (Kind reminder). I have found the email which i want to send reminder .But not able to send.
I tried Reply To Outlook Mail Message. Not able to add the Mail message name. Is there any Alternative way.
Ex. I sent an email to u … but since you are not responding to my email. So that i want to send reminder to you , saying that kind reminder. Is it possible to send from Sent items of outllook
Ofcourse, you can get the mails from the sent items by changing the folder name in the properties of Get outlook maill messages property. Then, loop through mails and based on the condition, get the body of that mail and append the string you want to add and then pass it to the body of reply to mail message activity @SrenivasanKanna
Read Mail Messages from Sent Folder
For each mail in MailMessage Collection
{
Read the Mail Message Properties and assign to different variables
like Reciepients , Body etc.
If you can send directly the mail mesasge --use the Mail item from this loop.
Else
Send a New mail message with the above read mail message and alter the subject with appending Reminder and body and rest all remain same from original mail message.