Only send e-mail out from erlang code

What is the simplest, reliable way of ONLY sending e-mails out from Erlang code?

My code does not need to receive e-mails, it only needs to send e-mails :slight_smile:

Anyway to do this without using the full gen_smtp client and server library ?

I need it to send out authorization e-mails.

Thanks in advance :slight_smile:

gen_smtp is the way to go. You don’t need to start an email server to use the sending part.

4 Likes

Perfect thanks - I got it to work now :grinning:

1 Like