How to send emails using yahoo or gmail in c++

后端 未结 3 2102
生来不讨喜
生来不讨喜 2021-01-24 04:02

I wanna send an email in my c++ program, it seems little complex. Is there way to use yahoo or gmail to use them to send my emails?

相关标签:
3条回答
  • 2021-01-24 04:24

    A basic internet search reveals the following:

    1. C++ SMTP example
    2. VMime a C++ Mail library
    3. libsmtp a C library to send mail via smtp

    In short if you have a gmail or yahoo account you can use their SMTP server to send messages using either of the three links above to assist you in using SMTP.

    0 讨论(0)
  • 2021-01-24 04:25

    You could try using the SMTPClientSession from the POCO library.

    0 讨论(0)
  • 2021-01-24 04:31

    This tutorial has everything you need, if you are working in a .net environment.

    0 讨论(0)
提交回复
热议问题