Tag Archives: curl

Perform FTP Operations via VBA Using curl

So in my previous post, I demonstrated how we could use curl through VBA to download files or entire web pages:

Today, I thought we could explore using curl to perform various FTP operations:

Basic curl FTP Commands

VBA curl FTP commands

Continue reading

How-to Download a Webpage or a File Using Curl

A while back, I played around with curl to send e-mails:

and was surprised at how relatively easy it was to use.

I have previous posted a few ways to download content from the web, such as:

but decided to play around with curl on this since I knew that this was supposed to be another one of its strengths.

Continue reading

VBA – Send Email Using Windows 10 Curl

In a recent discussion regarding automating e-mails in Access someone brought to my attention that Windows 10 has curl built into it, as of build 1803, which allows sending e-mails, amongst many other things.

This got me curious if it could be a viable replace for say CDO Mail.  As such, I did some research, development and testing and ended up with the following function:

Continue reading