简单的邮件列表

时间:2011-02-10 04:56:57

标签: java php email list subscribe

有人可以向我提供有关在页面中编码的详细信息吗?

基本上我需要从头开始构建一个邮件列表,人们可以订阅这些邮件列表并将它们添加到邮件列表中。

它背后的php / javascript是什么?

2 个答案:

答案 0 :(得分:1)

邮件列表非常简单。你需要决定你想要怎么做,但一般来说,你有一个订阅页面和一个帖子页面。我没有测试此代码,因此它可能包含缺陷,但它应该让您了解基于平面文件的邮件列表。

在实际实现中,您应该使用MySQL,验证和确认电子邮件,检查错误等。另外,请不要忘记这不会对帖子页面进行身份验证。理想情况下,您需要强身份验证,以确保您的邮件列表不会受到损害。另外知道你 - 必须有一个取消订阅功能 - 使用MySQL比使用平面文件更容易。

subscribe.php

<?php
// Has the form been posted?
if(isset($_POST['email']))
{
  // Append the submitted e-mail to the list.
  $file = fopen('list.txt', 'a');
  fputs($file, $_POST['email'] . "\n");
  fclose($file);

  // Send a message to the browser.
  die('Added to mailing list.');
}
?>
<html>
 <head>
  <title>Subscribe to Mailing List</title>
 </head>
 <body>
  <form action="#" method="post">
   <input type="text" name="email" />
   <input type="submit" value="Submit" />
  </form>
 </body>
</html>

post.php中

<?php
// Has the form been submitted?
if(isset($_POST['body']))
{
  // This should load the file into $lines, as an array of, well, lines.
  $lines = file('list.txt');

  // For each line, send a message. $line should contain an e-mail address.
  foreach($lines as $line)
    mail($line, $_POST['subject'], $_POST['body']);

  // Send a message to the browser.
  die("Message delivered.");
}
?>
<html>
 <head>
  <title>Post to Mailing List</title>
 </head>
 <body>
  <h1>Post</h1>
  <form action="#" method="post">
   <input type="text" name="subject" /><br/>
   <textarea name="body"></textarea><br/>
   <input type="submit" value="Submit" />
  </form>
 </body>
</html>

答案 1 :(得分:0)

实际上还有更多的背后 - 更多的MySQL。你需要MySQL,PHP和Javascript(用于UI和客户端验证)

你想从哪里开始?

简单型号 用户 - &gt;输入电子邮件 - &gt;通过javascript验证 - &gt; if(true) - &gt;通过POST / GET提交 - &gt;验证PHP - &gt; if(true) - &gt;进入MySQL数据库。