How to create contact / feedback botton

For example when user click botton it should redirect to send email page

On a website?

1 Like

No , in app .

Try this:

<a href = "mailto: [email protected]">Send Email</a>

Look at this… Set Activity starter this way…

Intent intent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts(
“mailto","[email protected]”, null));
intent.putExtra(Intent.EXTRA_SUBJECT, subject);
intent.putExtra(Intent.EXTRA_TEXT, message);
startActivity(Intent.createChooser(intent, “Choose an Email client :”));

1 Like

How to send an eMail
Taifun

4 Likes

Or You Can Add A Button Of Contact And Then When It Clicks Add Activity And Redirect The User To Google Forms Page…(Create A Form From Google Forms And Place The Link In Activity Url)

1 Like

Thankyou sir but it says Error 601 : No Corresponding activity was found

Show your blocks…

blocks
here is it and the code in action properties

:sleepy: These are not the kodes! Please follow the below pic…
2email

3 Likes

Ohh sorry , Thank You soo much sir :wink:

1 Like

Sir but not like this , i want to redirect to email app with “Sendto = myemail” and others blank

Just replace the txtEmailAddress with your email id (in a text string) and remove all other sockets below of it.

2 Likes

Now its working :wink: Thanks sir

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.