Sending Email with REFramework Config

In the ‘To’ section, write this:

Config(“reportTo”).ToString()

In the ‘CC’ section, write this:

Config(“reportCC”).ToString()

you can use argument but that argument type should be string only

Hello @Sekoleyte
This is my config file for example
image
and this is what i put in the to


Results:

@Sekoleyte

I know this is example. the suggestions given are completely different…to check on extra semicolon at end and all… as per first screenshot

fyi - emails are already visible in the screenshot you gave with log messages

cheers

1 Like

Hello @Mohammed_Shalaby

1st: What should I choose as the type of in_reportTo argument in the workflow?
2nd: What should I write as “Value” for the key in_reportTo ?
3rd: what should I write “To” area in Send E-mail activity?

This is a result when I write the example mail adresses manually.

You don’t need to pass an extra argument in In_ReportTo because the config argument is already available. You can directly use it in the To field of the Gmail activity like this: in_Config(“Emailto”).ToString.Split(";"c)

However, if you still prefer to use an extra argument, then you can assign it like this:
In_ReportTo=in_Config(“Emailto”).ToString.Split(";"c) type array of strings
and then put the argument directly To field of the Gmail activity

image
image

if you donot find the config as an argument pass it like this from outside


1 Like

Thank you for everybody trying to help. We did a call to check the problem with @ashokkarale and we noticed that one of the addresses in config was not proper, it was without “.com” and so any solution didn’t work properly. I’m sorry for this.

Thank you so much for your help again.

2 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.