Files
EventHubBack/src/logic/logic_email.erl
T
aleksey 571f04737d
CI / test (push) Successful in 6m47s
CI / deploy-ift (push) Successful in 3m23s
CI / e2e-ift (push) Successful in 1m58s
CI / deploy-stage (push) Successful in 2m1s
CI / e2e-stage (push) Successful in 1m13s
feat: specialist_invite API + user lookup. Fixes EventHub/EventHubBack#55
2026-07-22 18:52:35 +03:00

9 lines
336 B
Erlang
Executable File

-module(logic_email).
-export([send_verification_email/2, send_specialist_invite/2]).
send_verification_email(Email, Token) ->
io:format("Sending verification email to ~s with token ~s~n", [Email, Token]).
send_specialist_invite(Email, Token) ->
io:format("Sending specialist invite email to ~s with token ~s~n", [Email, Token]).