two click function on one button

let clicked = false;

$w.onReady(
    function(){
        $w('#message').text= 'COMING SOON.';
        $w('#button2').label= 'ALUGAR O GRIGIO STUDIO';
        $w('#button2').onClick(()=>{
            if(!clicked){
                $w('#message').text= 'O ESTÚDIO DO FUTURO!';
                clicked = true;
            }
            else{
                // Do the emailing thing
            }
        });
});