Daniel Nicoletti
Daniel Nicoletti
have you tried to use the demo application? it used to work with gmail servers tho there's been some time that I don't use it
there was some commit to change the ending \r\n sent to the server, the code looked fine but I didn't test so maybe it's related as it seems the server...
Hi @michaelernst can you spot what went wrong with your path, how to fix it without reverting?
is "Content-Transfer-Encoding: base64" header missing for the filename, or the file name isn't being encoded?
Sorry no idea I don't use Windows.
Simple mail already has Qt6 support, no need to add extra files, the first commit is a valid fix and the define includes, please mix less things
This shouldn't crash, because text is in scope, I need to take a deeper look as maybe it should have some QSharedDataPointer
addPart() expects an object allocated on the heap not stack, it will take ownership
if you look at the async examples it's on the heap https://github.com/cutelyst/simple-mail/blob/a7fd7f756ce8d2081607299f09c908f1e39e762a/README.md?plain=1#L53 How else can it live to be processed later when doing it async?
> Why would SimpleMail::MimeMessage take ownership of SimpleMail::MimeText when working in non async context? Because it's nearly the same API and was created like this in the past, I also...