Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: Sending string to an e-mail adress  (Read 7558 times)

0 Members and 1 Guest are viewing this topic.

Jesper Juhl

  • Hero Member
  • *****
  • Posts: 1405
    • View Profile
    • Email
Re: Sending string to an e-mail adress
« Reply #15 on: June 20, 2014, 06:07:26 pm »
If the server insists on using encryption there's really no way around that.

As I see it, you have a few options:

1. Find a different mail server to relay your messages through that does not require TLS.

2. Use OpenSSL, GNUTls or another similar library to add encryption capabilities to your application so you can talk to your current mail server.

3. Set up your own mail server with Postfix, Sendmail or similar and then relay messages via that.

4. Use an existing commandline mail program like mailx to send your messages and invoke it from your program via system() or similar.

But anyway, this no longer has much (anything) to do with SFML...