我创建了登录demo.I正在使用与PHP代码连接的JSON解析器解析用户名和密码。我也为忘记密码完成了代码。但我无法收到任何邮件。为什么?我创建了一个忘记在一个文本字段中用于输入电子邮件ID的密码活动,当我点击提交按钮时,邮件应该带密码到我的收件箱。如何做?有人请帮助我吗?
以下是忘记密码的代码:
package com.Login;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class ForgotPassActivity extends Activity {
EditText address, subject, emailbody, et_email;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.forgot_password);
TextView textv = (TextView) findViewById(R.id.lbl_loginhere);
et_email = (EditText) findViewById(R.id.et_email);
textv.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
// TODO Auto-generated method stub
ForgotPassActivity.this.finish();
Intent intent = new Intent();
intent.setClass(v.getContext(), LoginActivity.class);
startActivity(intent);
}
//Code For Sending mail
});
Button b1 = (Button) findViewById(R.id.submitButton);
b1.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
// TODO Auto-generated method stub
sendEmail();
}
});
}
public void sendEmail(){
final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("plain/text");
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{"testmail@testmail.com"});
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject.getText());
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, emailbody.getText());
ForgotPassActivity.this.startActivity(Intent.createChooser(emailIntent, "Send mail..."));
}
}
答案 0 :(得分:1)
Edited
如果您正在使用任何Web服务,更好的方法是通过传递用户电子邮件地址并在数据库中搜索并获取记录来调用Web服务。对于安全的方式传递数据创建邮政服务,并从您的服务,如PHP或任何其他技术发送邮件到收到的电子邮件与它的密码。
<强>更新强>
您可以使用服务邮件中的此功能()查看链接中的更多信息,这里是简单的代码片段
<?php
// The message
$message = "Line 1\nLine 2\nLine 3";
// In case any of our lines are larger than 70 characters, we should use wordwrap()
$message = wordwrap($message, 70);
// Send
mail('caffeinated@example.com', 'My Subject', $message);
?>