When I click submit button on my contact page, trying to submit a form that uses swift-mailer, I get this:
Warning: fopen(uploads/) [function.fopen]
You need to supply the full path to uploads not a realtive path because that is going to be interpreted as relative to class file that tries to open your attachment.
uploads
Try using realpath before passing the path to Swift.
realpath
$path = realpath('uploads/');