I can't seem to find a way to be able to send a completely raw email with swiftmailer in php (or with any emailer to be honest).
By completely raw I mean the email itself is the actual string already encoded with header, body, attachment etc already in it.
I don't need to or want to construct the message with ->addTo()
and such, I have the complete email string, just needs to be sent.
Does anyone know a way to do this?
Thanks