gpt4 book ai didi

react-native - 如何启动和打开电子邮件客户端 React-native?

转载 作者:行者123 更新时间:2023-12-03 06:47:51 33 4
gpt4 key购买 nike

我不想写电子邮件。我只是希望能够从 react native 应用程序在用户设备(iOS 和 Android)上启动主要电子邮件应用程序。

场景:我将在注册时向用户发送一封验证电子邮件。

最佳答案

React Native 打开邮件功能

<Button onPress={() => Linking.openURL('mailto:support@example.com') }
title="support@example.com" />

使用主题和正文响应 native 打开邮件功能

<Button onPress={() => Linking.openURL('mailto:support@example.com?subject=SendMail&body=Description') }
title="support@example.com" />

React Native 打开 URL

<Button onPress={() => Linking.openURL('https://www.google.co.in/') }
title="www.google.co.in" />

##不要忘记导入

import { Linking } from 'react-native'

Note: Not supported in iOS simulator, so you must test on a device.

关于react-native - 如何启动和打开电子邮件客户端 React-native?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44594818/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com