通过mail api在邮件服务器上创建一个电子邮件帐户
我正在创建一个 Web 应用程序,我需要在其中创建一个表单,用户可以通过该表单在邮件服务器上创建电子邮件 ID。这就像任何电子邮件服务提供商所做的那样,例如 gmail(用于在其网站上创建电子邮件帐户)。
我是 java 邮件 api 的新手。任何人都可以为此提供任何提示。
任何帮助将不胜感激。
谢谢...
实际上我想要的是一个注册表单,就像 gmail 或其他人提供的那样在他们的服务器上创建电子邮件 ID 帐户。
为了开发目的,我使用 *hmailserve*r。 我可以手动在此服务器上创建电子邮件 ID,但我希望以编程方式创建电子邮件 ID。
I am creating a web application in which i need to create a form by which user can create an email id on mail server. This is like any email service provider do, like gmail(for creating an email account on their site).
I am new to java mail api. Can anyone provide any hint for this.
Any help will be appreciated.
Thanks...
Actually what i want is a sign up form like what gmail or others provides to create an email id account on their servers.
for developing purpose i m using *hmailserve*r.
manually i can create email ids on this server but i want this in programmatic way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为 JavaMail 在这里没有帮助。首先,这取决于您使用的邮件服务器。每个邮件服务器都有不同的方式来管理用户帐户。例如,使用 Postfix,您可以管理 MySQL 数据库中的用户帐户(如该教程中所示) 。然后你只需要创建数据库条目。其他邮件服务器可以管理文本文件中的帐户。
I don't think JavaMail will help here. First, it depends on the mail server you use. Every mail server has different ways to manage user accounts. For example with Postfix you can manage user accounts in a MySQL database (like in that tutorial). Then you just would have to create database entries. Other mail servers may manage the accounts in a textfile.
AFAIK 你不能单独使用 java mail api 来做到这一点,你需要针对你正在使用的特定邮件服务器的 API。
AFAIK you can't do it using java mail api alone, you'll need and API for the specific mail server you are using.
Java Mail API 将帮助您解决这个问题。尝试这些链接:
http://www.mkyong.com/ java/javamail-api-sending-email-via-gmail-smtp-example/
http://javamail.kenai.com/nonav/javadocs/index.html
Java Mail API will help you out in this. Try these links:
http://www.mkyong.com/java/javamail-api-sending-email-via-gmail-smtp-example/
http://javamail.kenai.com/nonav/javadocs/index.html