How can I send email using framework7?
You need a backend for that. Or you are asking how to click on an email in your app and open native phone app to send emails?
Thanks for your answers. I want to send an email programmatically not via email application requiring user to click send email button. Is it possible? Cordova plugins just opens email application as far as I see.
That then will have to be a server-side implementation. It needs to use SMTP and stuff… You will need to make an API call on click of a button. That’s to say, you will use Framework7 request() method to make an ajax call, send an email from your API and return a success message to inform the user that its been sent.