SDK
Build applications in Python, TypeScript, Java, or C# with complete control over the business logic while Tolis carries the provider infrastructure.
@workspace.outlook.on_email()
async def handle(email):
folder = workspace.sharepoint.folder("Intake")
await folder.upload(email.attachment)workspace.outlook.onEmail(async (email) => {
const folder = workspace.sharepoint.folder("Intake");
await folder.upload(email.attachment);
});workspace.outlook().onEmail(email -> {
var folder = workspace.sharepoint().folder("Intake");
folder.upload(email.attachment());
});workspace.Outlook.OnEmail(async email => {
var folder = workspace.SharePoint.Folder("Intake");
await folder.Upload(email.Attachment);
});