-module(logic_email). -export([send_verification_email/2, send_specialist_invite/2, send_password_reset/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]). send_password_reset(Email, Token) -> io:format("Sending password reset email to ~s with token ~s~n", [Email, Token]).