aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Oliver Clark Rickard <ocrickard@runway20.com>2013-05-28 15:25:45 -0600
committerGravatar Oliver Clark Rickard <ocrickard@runway20.com>2013-05-28 15:25:45 -0600
commit88e6c0e7550537b03b6c4fa89eebc5237061320b (patch)
treeec4baa3a7af6d54c9f57d7031a00f8e56c8737c6 /README.md
parent9925fc9010b2b96e4213261247acbc03a68baacb (diff)
Fixed svg img, changed organization a bit.
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index ec66fe4c..070ac13b 100644
--- a/README.md
+++ b/README.md
@@ -64,9 +64,9 @@ Using MailCore 2 is just a little more complex conceptually than the original Ma
In this sample, we retrieved and printed a list of email headers from an IMAP server. In order to execute the fetch, we request an asynchronous operation object from the `MCOIMAPSession` instance with our parameters (more on this later). This operation object is able to initiate a connection to Gmail when we call the `start` method. Now here's where things get a little tricky. We call the `start` function with an Objective-C block, which is executed on the main thread when the fetch operation completes. The actual fetching from IMAP is done on a **background thread**, leaving your UI and other processing **free to use the main thread**.
-### Anatomy of a Message ###
+## Anatomy of a Message ##
-<embed src="https://raw.github.com/ocrickard/mailcore2/master/mailcore-schema.svg" type="image/svg+xml" />
+<img src="https://rawgithub.com/ocrickard/mailcore2/master/mailcore-schema.svg" width="783" height="559" />
Background Reading:
* [RFC821](http://tools.ietf.org/html/rfc821)