Sorry, the email display has some problem. Here is my publish setup:
(require 'org-publish)
(setq org-publish-project-alist
'(
;;first, the notes component
("org-notes"
:base-directory "~/Documents/org/notes/"
:base-extension "org"
:publishing-directory "~/Documents/org/publish/"
:recursive t
:publishing-function org-publish-org-to-html
:headline-levels 4 ; Just the default for this project.
:auto-preamble t
)
;;second,the static component
("org-static"
:base-directory "~/Documents/org/notes"
:base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf"
:publishing-directory "~/Documents/org/publish/"
:recursive t
:publishing-function org-publish-attachment
)
;;third, the publish component
("org" :components ("org-notes" "org-static"))
))