Hi
Renjith,
sorry for beeing unclear ...
1. It is a server side Blazor app
2. I have data in a grid which can be exported to excel perfectly
3. I want to send the excel table as an attachment by email (using MailKit)
Problem: If I get it right the excel export is also a download at the same time. So I would have to transfer the excel table back to the server to perform the e-mail operation from the server, because the attachment I want to send has to reside in the wwwroot directory for the e-mail module to work correctly.
So the refined question is:
Is it possible to perform an excel export with the grid and store the excel table in wwwroot/mydir in a server side blazor app without prompting the user.
regards
Uwe