How to build your own email box and use a rss client to read those emails 07-15-2020, 01:12 AM
#1
This tutorial target is to create a inbound email and use a rss client or script to get the emails.
NOTE: There is no security and the email can be read by anyone.
1 - Create a blog. For example in wordpress.com
2 - Activate the post by email feature and grab the email. Example: something@post.wordpress.com
3 - Download a rss client and add your wordpress.com rss
4 - Send a test email to your something@post.wordpress.com
5 - Check your rss client if you have received the email
6 - Done!
Here is a rss client script (May not work with all rss feeds)
NOTE: There is no security and the email can be read by anyone.
1 - Create a blog. For example in wordpress.com
2 - Activate the post by email feature and grab the email. Example: something@post.wordpress.com
3 - Download a rss client and add your wordpress.com rss
4 - Send a test email to your something@post.wordpress.com
5 - Check your rss client if you have received the email
6 - Done!
Here is a rss client script (May not work with all rss feeds)
Code:
<script>
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var myObj = JSON.parse(this.responseText);
document.write('<html><title>RSS Client</title><center><table><tr><td><style>body{background-color: #fff; margin: 0; padding: 0; font-family:"Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; } div { width: 600px; margin: 5em auto; padding: 50px; background-color: #000; border-radius: 1em;}@media (max-width: 700px) { body {background-color: #000;} div{width: auto; margin: 0 auto; border-radius: 0; padding: 1em;}}</style><div>');
document.write('<font color="gold">RSS Client</font><hr><br>');
for (x in myObj.items) {
document.write('<font color="red">'+ myObj.items[x].title +'</b><br>');
document.write('<a href="'+ myObj.items[x].link +'" target="_blank">'+ myObj.items[x].link +'</a></font><br><br>');
}
document.write('</div></td></tr></table></center></html>');
}
};
xmlhttp.open("GET", "https://api.rss2json.com/v1/api.json?rss_url=https://something.wordpress.com/feed.php", true);
xmlhttp.send();
</script>

![[+]](https://sinister.ly/images/modern/collapse_collapsed.png)