Ananya1
(a)
June 1, 2020, 10:34am
1
i want to add cc in mail and reply to old mail
i have used get mails
then i have used for each and within loop i have used invoke method ,Target type is object and expression is item.cc.add(“mailid”) but i am getting error expression doesnot produce value.
You can add cc in send Mail activity
1 Like
Ananya1
(a)
June 1, 2020, 10:39am
3
but it will create new mail, i want to reply in old mail
Ananya1
(a)
June 1, 2020, 10:44am
5
i want to use reply all activity but it doesnt have CC optn
Ananya1
(a)
June 1, 2020, 11:08am
8
but it will be sending new mail, i want to reply in previous mail
You can use this if you like for non html:
MailReply.xaml (10.7 KB)
Reply :
[image]
Reply All:
[image]
[image]
nothing fancy, just adding few lines. Might saves others time.
subject = "Re: " + email.Subject
body = newReply+Environment.NewLine+Environment.NewLine+"From: "+ email.From.Address+Environment.NewLine+"Sent: "+email.Headers.Get("date")+Environment.NewLine+"To: "+string.Join(",",email.To) +Environment.NewLine+"Cc: "+string.Join(",",email.CC)+Environment.NewLine+"Subject: "+email…
it will be sent as reply check once
Ananya1
(a)
June 1, 2020, 2:31pm
10
it also creating new mail , its only taking subject of previous mail and sending new mail