-1

how to sync office 365 outlook mails with attachments to AWS S3 automatically? it must be on server or some microsoft app or some lambda function. I don't want to do it via pc

I tried to find some connectors but without luck

Eugene Astafiev
  • 47,483
  • 3
  • 24
  • 45
goka
  • 1
  • 3

1 Answers1

0

There is no ready-made or built-in tools for that. You may consider creating a script or application for doing that using Graph API or EWS. At least using these APIs you can get attachments in Outlook for further uploading to the web server.

See How to upload a file to amazon S3 super easy using c#.

Eugene Astafiev
  • 47,483
  • 3
  • 24
  • 45
  • like to make lambda function + graph webhook and when a new message will arrive to post to lambda? – goka Nov 03 '22 at 11:29