How To Send Upload Successful Email After Box Upload is Complete

Hello,

I am uploading the files from our local directory to a box (Using Box connector) where our vendor has access to it. Once the file upload is successful, we want to move that file under the archive directory on our end so that if we run the process again tomorrow those same files are not getting uploaded twice.

I got all of the above working as expected, my question is I want to send my self an email when this project runs successfully without any issues. Is there anyway to do this?

@nirmit.kansagra

There are email related activities..either outlook or M365 or smtp or gmail activities…use them use a send email at the end of all the activitirs you use..ao if everything is successful an email is sent as required

Cheers

So meaning once all my other activities are executed, then use the smtp send email activity? Is it safe to say the send email activity will only happen after all other items are executed? I wasnt sure if i need to add any logic in there that say if this was successful then do this.

@nirmit.kansagra

If you are adding any try catch then inside the try block itself give the activity then only when successful it would run

If its a sequencial activity then if something fails then it would not execute next activities in the try block and goes to catch..if try catch not present then execution aborts

In either case last activity will be send email only if successful

Cheers