I need help with ActionSheet functions

Hello!
Since im just getting started then can someone help me to add function to Call and Mail so it would call or send a mail, thanks!

  avaLeht() {
  let actionSheet = this.actionSheetCtrl.create({
    title: "Menu" ,
    buttons: [
      {
        text: 'Call',
        icon: "call",
        handler: () => {

        }
      }, {
        text: 'Send mail',
        icon: "mail",
        handler: () => {
        }
      }, {
        icon: "close",
        text: "Close",
        role: 'destructive',
        handler: () => {
          console.log('Clicked Close');
        }
      }
    ]
  });
  actionSheet.present();
}

That’s a deceptive title for the thread, you don’t need help with the action sheet at all :slight_smile:

I would suggest you look at:

and