Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
post_office [2024/12/15 02:31] melonpost_office [2025/02/21 18:01] (current) – [Melon's Post Office] GlitchyZorua
Line 1: Line 1:
 ====== Melon's Post Office ====== ====== Melon's Post Office ======
-The post office is a free newsletter service that allows you to collect e-mails from visitors to your site and send out weekly newsletters to them!+The [[https://letters.melonland.net/index.php|post office]] (aka Melon's Post Office) is a free newsletter service that allows you to collect e-mails from visitors to your site and send out weekly newsletters to them!
  
 +{{ :screenshot_2025-02-21_8.49.16_am.png?400|}}
 +
 +The site depicts lists of features that the post office has to offer. On the top, there are links to different actions, like viewing your drafts, some of those actions are not available if you are signed out/don't have an account. The background depicts a pattern of paper-like lines.
 ===== Writing Tips ===== ===== Writing Tips =====
 News letters allow most simple HTML and you can design and layout your letter like a webpage! News letters allow most simple HTML and you can design and layout your letter like a webpage!
Line 15: Line 18:
  
 ===== Getting People to Subscribe ===== ===== Getting People to Subscribe =====
-Its a good idea to include a link to your newsletter signup page somewhere on your homepage. The Post Office supplies a simple signup form that you can style with your own CSS file, however you can also create your own form on your site following this template:+It'a good idea to include a link to your newsletter signup page somewhere on your homepage. The Post Office supplies a simple signup form that you can style with your own CSS file.
  
-<code> +You can also create your own form on your site following this template - get your list-id from the end of your join url: 
-<form method='POST' action="https://letters.melonland.net/join.php">+<code><form method='POST' action="https://letters.melonland.net/join.php">
   <input type='hidden' name='list' value='{YOUR MAILING LIST ID}' />   <input type='hidden' name='list' value='{YOUR MAILING LIST ID}' />
-  <input type='email' name='email' required required maxlength='120'><br> +  <input type='email' name='email' required maxlength='120'><br> 
-  <input type='text' name='nickname' required required maxlength='32'><br>+  <input type='text' name='nickname' required maxlength='32'><br>
   <button type='submit'>Subscribe to My Newsletter!</button>   <button type='submit'>Subscribe to My Newsletter!</button>
-</form> +</form></code>
-</code>+
 //Fun fact, you can add a target="my_iframe_id" to your form if you'd like it to open in an iframe and not leave your site!// //Fun fact, you can add a target="my_iframe_id" to your form if you'd like it to open in an iframe and not leave your site!//
 +
 +
 +----