Send an email with attach PDF

Hi everyone!
Iโ€™m trying to create a bot to notify actualization of my data base and send a PDF attach in the same email.
Iโ€™ve got the email report but I donโ€™t receive any PDF even I configured it in the task โ€œsend an emailโ€.
I donโ€™t know how to do it and only find information about the workflow process but not about do it through the bot tool.

Could anyone help me, please??
Thank a lot.
Daniel

0 5 138
5 REPLIES 5

In the task, unselect โ€œDefault Contentโ€ to get some choices

Finally, Iโ€™ll get it. I had the option unselected but I think there was other bot selected.

Do you know if I can change the text generated from and answer to the email? I meanโ€ฆ I know how to fill a text with the answer but in the Yes/No question the result start with a Y. o N. and generate a text difficult to read. Do you know how to omit it and change for the standard answer I write?

Thank you a lot for your answer.

Send me an example of your text and Iโ€™ll give you a more specific answer. But basically youโ€™d use CONCATENATE() with something like IF([Column Name]=TRUE,โ€œYesโ€,โ€œNoโ€)

Thank you Simon.
An example could be something like this (Itโ€™s in spanish so thatโ€™s a translated example):

In the form app there is a question about the vaccination status of the patient like: โ€œHas the patient started the vaccination schedule?โ€
If answer is Yes, I want to write in the text report โ€œThe patient has started his vaccination process with ---- (information in other question)โ€.
If answer is No, I want to write in the text report โ€œThe patient has not started vaccinationโ€.

Thatโ€™s not the exactly question because of the language but I think itโ€™s helpful. Now in my text report I get:
If yes: Y: The patient has started his vaccination process with ---- (information in other question).
If not: N: The patient has not started vaccination.

And I want to get out the โ€œYโ€ and โ€œNโ€.

Iโ€™ll try with the concatenate functionโ€ฆ "IF([Vaccination process]=TRUE,โ€œThe patient has started his vaccination process with <<[(vaccinations started)]>>โ€,โ€œThe patient has not started vaccinationโ€).

Iโ€™ll tell you something when I fix the bot to send reports jajaja I donโ€™t know what happen since yesterday but I got the PDF report in good conditions and later I lose itโ€ฆ

<<IF(
	[Vaccination process]=TRUE,
	CONCATENATE("The patient has started his vaccination process with ",[Other Column Name]),
	"The patient has not started vaccination"
)>>
Top Labels in this Space