I’m creating a choice button in Glide using HTML and CSS, but I’m having trouble adding an action to send an email when the button is pressed. Does anyone know if there is a problem with this, or is it just because this option was added recently and doesn’t have much support?
Just add @click=“sendEmail” to your button class, and it should work. sendEmail is the action name you’re giving to the Action in your screenshot. If you name it “Lorem Ipsum” for example, it will be @click=“loremIpsum”.