Sending Emails in C
I was wondering if 开发者_运维技巧there was any way to send an email from C. Perhaps like the email managing functions available in the php library?
I have used libESMTP from uklinux.net before and it works pretty well.
- Checkout this answer : email in c language
- You could execute software that does it for you. Here is an example: send email form command line
- Check out libquickmail. It is especially designed to be small and easy to use in C programs. Attachments are also supported.
- Send Email in Visual C++ : Tutorial
BTW,This is much easier in Python than c or c++.
精彩评论