On my site, I have a few buttons where I’ve selected the “Email” option when adding a link to a button. This should create a mailto: link that initiates an email. On iPhones, these buttons are working. On Android devices, they are not. On Mac computers, they are not. Any suggestions on how to fix? Or a design-friendly alternative?
URGENT- I created a button in a repeater which is linked to a database using the mailto: code. It was working I tested it, then all of a sudden it has stopped.
Can anyone please tell me what is going on?
Thanking you in advance.
Sylvia
import wixData from ‘wix-data’ ; import wixUsers from ‘wix-users’ ; //let m1Email ;
wixData . query ( “1425MemberProfiles” )
. find ()
. then (( results ) => {
$w ( “#repeater1” ). onItemReady (( $item , itemData , index ) => { let m1Email = itemData . email ; let m1EmailPrefix = “mailto:” ;
//no let m1EmailAddress = (m1EmailPrefix + m1Email);
//let m1EmailAddress = m1EmailPrefix + m1Email;
// let m1EmailAddress = “mailto:” + m1Email; let m1EmailAddress = ( “mailto:” + m1Email );
Not to perpetuate a repeated thread, but has there been any resolution on this subject?
My friend and I are creating a website and this functionality is not working on a Windows based PC.
Is there a solution or a different method for getting the MailTo link to work on a WIX created page?