Rank 2: Process
I called 2 cloud functions which suppose to send email to user. But It's returning previews functions data. I mean that data is completely changed.
I am using 1.1.2 and dart 2.17 for cloud function
try { final result = await state.functions.createExecution( functionId: EnvConfig.instance.appwriteSendEmailFunctionId, data: data); print(result.toMap()); print(result.response); print(result.stderr); print(result.stdout); } on Exception catch (e) { print('error'); print(e); }
This is how I call my function