Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jridgewell/emailparser
A Coding Practical before a job interview.
https://github.com/jridgewell/emailparser
Last synced: about 2 months ago
JSON representation
A Coding Practical before a job interview.
- Host: GitHub
- URL: https://github.com/jridgewell/emailparser
- Owner: jridgewell
- Created: 2012-06-13T17:48:40.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-05-16T14:57:53.000Z (over 11 years ago)
- Last Synced: 2024-10-19T18:48:26.998Z (2 months ago)
- Language: PHP
- Size: 137 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
emailParser
===========A Coding Practical before a job interview.
PHP
---I avoided using PHP's IMAP functions, it seemed like cheating. This will parse the headers into an array, the message body, and stores any attachments in a array. There is basic usage in the bottom of the implementation.
### What else is there to do?
* Write unit tests
* Implement a way to search for an attachment
* Body mime-typesRuby Gem
--------More or less the same as the PHP implementation. This will parse the headers into a hash, the message body, and stores any attachments in a array. There is basic usage in the spec files.
### What else is there to do?
* Separate into individual modules
* Comment code
* Implement a way to search for an attachment
* Body mime-types