所以,我一直在尝试让它在Android上正常运行,但出于某种原因,发送的邮件并没有带有链接。这适用于iOS。
var emailDialog = Titanium.UI.createEmailDialog();
if (emailDialog.isSupported()) {
emailDialog.subject = 'Sharing my app';
emailDialog.messageBody = 'I want to share with you my app.<br/><br/>Download it to your mobile device to:<br/><br/>• Access cool stuff<br/>• Personalize stuff<br/>• Do even more stuff<br/>• Share content<br/><br/>Visit <a href="https://play.google.com/store/apps/details?id=testigtime&hl=en">Google Play Store</a> or the <a href="https://itunes.apple.com/en/genre/ios/">Apple App Store</a> to download My App for phone or tablet now.<br/><br/>Best,<br/>[Name]';
emailDialog.html = true;
emailDialog.open();
}
如您所见,有两个链接。这会正确弹出邮件对话框,甚至会将文本Google Play商店和Apple App Store显示为蓝色链接。一旦我点击发送并看到它如何通过,它似乎完成删除链接。任何人都可以帮忙吗?
答案 0 :(得分:1)
这似乎与this answer中建议使用的Android电子邮件客户端有关。
我建议你安装一个替代(前沿)电子邮件应用程序,看看是否能解决它。然后我们确定它是默认的Android电子邮件客户端。如果没有,那么创建一个Appcelerator JIRA票可能值得研究。
你有什么Android版本吗?