We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I have been using your library happily to use curl with delphi. I ran into a few issues when using SMTP and attachments.
Running a diff on your latest source of Curl.Lib.pas and my adjusted version I get this:
1760c1760 < function curl_mime_type(part : HCurlMime; mimetype : PAnsiChar) : TCurlCode; --- > function curl_mime_type(part : HCurlMimePart; mimetype : PAnsiChar) : TCurlCode; 2616a2616,2620 > function curl_easy_setopt( > curl : HCurl; > option : TCurlMimeOption; > data : HCurlMime) : TCurlCode; overload; inline; > 3062a3067,3074 > function curl_easy_setopt( > curl : HCurl; > option : TCurlMimeOption; > data : HCurlMime) : TCurlCode; > begin > Result := curl_easy_setopt_initial(curl, option, NativeUInt(data)); > end; >
I wanted to let you know, it seems a good improvement to me to include this into your original. Greetings, JP.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I have been using your library happily to use curl with delphi.
I ran into a few issues when using SMTP and attachments.
Running a diff on your latest source of Curl.Lib.pas and my adjusted version I get this:
I wanted to let you know, it seems a good improvement to me to include this into your original.
Greetings, JP.
The text was updated successfully, but these errors were encountered: