Letter Boxes

Place the numbers 1-9 and the letters A-I into the 3x3 grid, such that the given requirements are met. For example, according to the first requirement of Puzzle 1 below, the "A" will be placed two boxes below the "1". The last one means "I is not in the bottom row." Each box will hold one number and one letter.
Puzzle 1:

+---+---+---+
|   |   |   |
+---+---+---+
|   |   |   |
+---+---+---+
|   |   |   |
+---+---+---+

+---+  +---+          +---+
| 1 |  | B |          | C |
+---+  +---+          +---+
|   |  |   |          |   |
+---+  +---+---+  +---+---+
| A |  |   | 2 |  | 3 |   |
+---+  +---+---+  +---+---+

+---+---+---+  +---+---+---+
| 4 |   |   |  |   |   | E |
+---+---+---+  +---+---+---+
        | D |  | 5 |
        +---+  +---+

+---+---+  +---+---+  +---+  +---+
|   | 6 |  | G |   |  | 8 |  | I |
+---+---+  +---+---+  +---+  +---+
| F |          | 7 |  | H |  |   |
+---+          +---+  +---+  +---+

and: E and 9 are not in the same box.
    
Puzzle 2:

+---+---+---+
|   |   |   |
+---+---+---+
|   |   |   |
+---+---+---+
|   |   |   |
+---+---+---+

+---+---+  +---+---+  +---+---+
| A | 1 |  |   | E |  | 6 |   |
+---+---+  +---+---+  +---+---+
           | 5 |          | F |
+---+---+  +---+          +---+
|   | 2 |
+---+---+      +---+---+
| B |          |   | G |
+---+          +---+---+
               |   |
+---+---+---+  +---+   +---+---+
| C |   | 3 |  | 7 |   |   | 9 |
+---+---+---+  +---+   +---+---+

+---+---+---+  +---+---+---+
| D |   |   |  | 8 |   | H |
+---+---+---+  +---+---+---+
        | 4 |
        +---+

and: I and 4 are not in the same box.

Source: Original. Similar to earlier "Letter Lines" puzzle.


Solution
Mail to Ken