- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我的代码工作原理如下:
import java.io.*;
import java.net.*;
import java.util.*;
public class SMTPClientDemo {
protected int port = 25;
protected String hostname = "localhost";
protected String from = "";
protected String to = "";
protected String subject = "";
protected String body = "";
protected Socket socket;
protected BufferedReader br;
protected PrintWriter pw;
public SMTPClientDemo() throws Exception
{
// TODO code application logic here
try
{
getInput();
sendEmail();
}
catch (Exception e)
{
System.out.println ("Error sending message - " + e);
}
}
public static void main(String[] args) throws Exception {
// TODO code application logic here
// Start the SMTP client, so it can send messages
SMTPClientDemo client = new SMTPClientDemo();
}
// Check the SMTP response code for an error message
protected int readResponseCode() throws Exception
{
String line = br.readLine();
System.out.println("< "+line);
line = line.substring(0,line.indexOf(" "));
return Integer.parseInt(line);
}
// Write a protocol message both to the network socket and to the screen
protected void writeMsg(String msg) throws Exception
{
pw.println(msg);
pw.flush();
System.out.println("> "+msg);
}
// Close all readers, streams and sockets
protected void closeConnection() throws Exception
{
pw.flush();
pw.close();
br.close();
socket.close();
}
// Send the QUIT protocol message, and terminate connection
protected void sendQuit() throws Exception
{
System.out.println("Sending QUIT");
writeMsg("QUIT");
readResponseCode();
System.out.println("Closing Connection");
closeConnection();
}
// Send an email message via SMTP, adhering to the protocol known as RFC 2821
protected void sendEmail() throws Exception
{
System.out.println("Sending message now: Debug below");
System.out.println("-------------------------------------");
System.out.println("Opening Socket");
socket = new Socket(this.hostname,this.port);
System.out.println("Creating Reader & Writer");
br = new BufferedReader(new
InputStreamReader(socket.getInputStream()));
pw = new PrintWriter(new
OutputStreamWriter(socket.getOutputStream()));
System.out.println("Reading first line");
int code = readResponseCode();
if(code != 220) {
socket.close();
throw new Exception("Invalid SMTP Server");
}
System.out.println("Sending helo command");
writeMsg("HELO "+InetAddress.getLocalHost().getHostName());
code = readResponseCode();
if(code != 250)
{
sendQuit();
throw new Exception("Invalid SMTP Server");
}
System.out.println("Sending mail from command");
writeMsg("MAIL FROM:<"+this.from+">");
code = readResponseCode();
if(code != 250)
{
sendQuit();
throw new Exception("Invalid from address");
}
System.out.println("Sending rcpt to command");
writeMsg("RCPT TO:<"+this.to+">");
code = readResponseCode();
if(code != 250)
{
sendQuit();
throw new Exception("Invalid to address");
}
System.out.println("Sending data command");
writeMsg("DATA");
code = readResponseCode();
if(code != 354)
{
sendQuit();
throw new Exception("Data entry not accepted");
}
System.out.println("Sending message");
writeMsg("Subject: "+this.subject);
writeMsg("To: "+this.to);
writeMsg("From: "+this.from);
writeMsg("");
writeMsg(body);
code = readResponseCode();
sendQuit();
if(code != 250)
throw new Exception("Message may not have been sent correctly");
else
System.out.println("Message sent");
}
// Obtain input from the user
protected void getInput() throws Exception
{
// Read input from user console
String data=null;
BufferedReader br = new BufferedReader (new InputStreamReader(System.in));
// Request hostname for SMTP server
System.out.print("Please enter SMTP server hostname: ");
data = br.readLine();
if (data == null || data.equals("")) hostname="localhost";
else
hostname=data;
// Request the sender's email address
System.out.print("Please enter FROM email address: ");
data = br.readLine();
from = data;
// Request the recipient's email address
System.out.print("Please enter TO email address :");
data = br.readLine();
if(!(data == null || data.equals("")))
to=data;
System.out.print("Please enter subject: ");
data = br.readLine();
subject=data;
System.out.println("Please enter plain-text message ('.' character on a blank line signals end of message):");
StringBuilder buffer = new StringBuilder();
// Read until user enters a . on a blank line
String line = br.readLine();
while(line != null)
{
// Check for a '.', and only a '.', on a line
if(line.equalsIgnoreCase("."))
{
break;
}
buffer.append(line);
buffer.append("\n");
line = br.readLine();
}
buffer.append(".\n");
body = buffer.toString();
}
}
编译顺利,当我尝试运行它时,结果是:
Please enter SMTP server hostname: mail.telkomsel.com
Please enter FROM email address: andikacj@aim.com
Please enter TO email address :kamikaze273@gmail.com
Please enter subject: coba
Please enter plain-text message ('.' character on a blank line signals end of message):
coba14
.
Sending message now: Debug below
-------------------------------------
Opening Socket
Creating Reader & Writer
Reading first line
< 220 ESMTP mail.telkomsel.com
Sending helo command
> HELO Cruzer-PC
< 250 mailpapp1.telkomsel.co.id
Sending mail from command
> MAIL FROM:<andikacj@aim.com>
< 250 2.1.0 Ok
Sending rcpt to command
> RCPT TO:<kamikaze273@gmail.com>
< 250 2.1.5 Ok
Sending data command
> DATA
< 354 end data with <CR><LF>.<CR><LF>
Sending message
> Subject: coba
> To: kamikaze273@gmail.com
> From: andikacj@aim.com
>
> coba14
.
< 421 syntax error (wait for server response)
Sending QUIT
> QUIT
< null
Error sending message - java.lang.NullPointerException
我可以保证的是,421 意味着问题可能出在服务器上,但是是哪台服务器?
任何帮助将不胜感激,谢谢
最佳答案
该错误是由您正在通信的服务器 mail.telkomsel.com
发送的。
为了防止垃圾邮件,大多数服务器不会接受发件人地址位于其域之外并且未经适当身份验证的电子邮件。错误代码 421 实际上意味着服务不可用。这是对垃圾邮件发送者说走开!的一种方式。
关于java - 我的 SMTP 发件人抛出错误 421,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20537757/
大家好,我是 php 和 html 新手,面临问题:SMTP 错误:无法连接到 SMTP 主机。邮件程序错误:SMTP 错误:无法连接到 SMTP 主机。但在本地 xampp 中工作正常,在服务器中出
我希望这个问题不是完全偏离主题。 我一直想知道 SMTP 电子邮件验证。有很多服务(例如 Kickbox.io、Email-Validator.net 等)似乎可以处理 SMTP 验证,而不会阻止其
我正在尝试使用 phpMailer 通过电子邮件向用户发送确认消息。我的代码是这样的: IsSMTP(); // set mailer to use SMTP $mail->Host = "ssl:/
我已经在我的本地机器(Windows 7)上安装了 bugzilla 并且它运行良好。但是当我尝试创建一个新帐户时,它说 There was an error sending mail from it
我有一个将发送大量输出的程序。我只是想知道最大电子邮件附件大小是多少?根据RFC 1870邮件服务器可以拒绝邮件,因为它们太大了,但是使用 SMTP/MIME 时有最大大小吗?我在这方面找不到任何东西
假设我有一个网站,其某些功能需要电子邮件验证(例如用户注册)。当然,我会使用正则表达式验证电子邮件,但曾几何时,我在其他人的代码中看到了 SMTP 验证。 SMTP 验证有哪些优点和缺点? 我可以假设
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 2年前关闭。 Improve thi
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a software
我正在尝试使用 Vala 和 GLib + GIO 实现一个简单的 SMTP 服务器。 到目前为止,纯文本通信没有问题,但当涉及使用 STARTTLS 的 TLS 时,事情会变得更加困难。 这是我到目
我使用 go 的 net/smtp 发送电子邮件,它对某些电子邮件工作正常但对其他电子邮件无效。我收到 554 5.5.1 Error: no valid recipients 但我很确定我提供了正确
我需要帮助 这是我的代码: require 'PHPMailerAutoload.php'; $mail = new PHPMailer; $mail->isSMTP(); $mail->Host =
我的 joomla 联系表 gmail SMTP 设置不起作用。请参阅下面提交联系表时显示的消息。应该是什么原因?extension=php_openssl.dll 也启用了.. 错误信息-: SMT
我正在尝试使用 Amazon 的 SES/SMTP 发送电子邮件,但出现以下错误: javax.mail.MessagingException:无法连接到 SMTP 主机:email-smtp.us-
在我的Mac终端上,我试图通过telnet将smtp.gmail.com转换为port 587。 在Google Apps(设置为管理Dreamhost域)上,我已配置了中继,如下所示: "Allow
理论上,Request For Comments (RFC) 集包含开发人员构建 SMTP 客户端需要知道的一切。然而,要知道哪些 RFC 需要考虑,哪些可以忽略并不总是那么容易。 有没有人有 RFC
MT 支持 SMTP SendMail,还是我坚持使用 MFMailComposeViewController?现在,我可以使用它(MFMailComposeViewController),但是当我添
很难说出这里问的是什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或言辞激烈,无法以目前的形式合理回答。如需帮助澄清此问题以便可以重新打开,visit the help center . 10年前关
我正在尝试通过 BizTalk SMTP 发送端口发送消息。具体来说,我正在通过编排的“稍后指定”端口发送消息。我的目标是使用我选择的附件文件名将消息正文附加到已发送的电子邮件。 但是,无论我尝试什么
我正在编写一个通过有效的 GMail 用户 ID 和密码发送邮件的应用程序。 我只是想在 Windows XP 命令行上模拟 SMTP 连接,当我在 465 端口 telnet smtp.gmail.
关于从应用程序通过 GMails SMTP 服务器发送的电子邮件被标记为垃圾邮件的问题已经有很多讨论。 阅读其他帖子我无法弄清楚我的问题。我的电子邮件最终仍然是 SPF 中性的。 在我的 *(捕获所有
我是一名优秀的程序员,十分优秀!