If you have a traditional letter with content like-so.
From Someone
50 Example Drive
Random City, ZIP
Country
Tel: 444-555-6666
July 30, 2009
To Somebody
51 Example Drive
Random City, ZIP
Country
Tel: 444-555-7777
Dear Somebody:
Get off my lawn!
Sincerely yours,
Someone
How can one create such a letter using the LaTeX Memoir class.
In other words, using the Letter class the canon is:
\documentclass{letter}
    \signature{Your name}
    \address{Street \\ City \\ Country}
    \begin{document}
        \begin{letter}{Company name \\ Street\\ City\\ Country}
        \opening{Dear Sir or Madam:}
        \dots
        \closing{Yours Faithfully,}
        \ps{P.S. Here goes your ps.}
        \encl{Enclosures.}
    \end{letter}
\end{document}
How would one achieve similar or the same formatting using the Memoir class?
Thank you & cheers.