sms-upsell #55

Merged
Alfred-mk merged 4 commits from sms-upsell into master 2025-04-11 09:24:36 +02:00
Showing only changes of commit 695bfed349 - Show all commits

View File

@ -1715,12 +1715,12 @@ func (h *MenuHandlers) InviteValidRecipient(ctx context.Context, sym string, inp
return res, fmt.Errorf("Data error encountered") return res, fmt.Errorf("Data error encountered")
} }
// TODO _, err := h.accountService.SendUpsellSMS(ctx, sessionId, string(recipient))
// send an invitation SMS if err != nil {
// if successful res.Content = l.Get("Your invite request for %s to Sarafu Network failed. Please try again later.", string(recipient))
// res.Content = l.Get("Your invitation to %s to join Sarafu Network has been sent.", string(recipient)) return res, nil
}
res.Content = l.Get("Your invite request for %s to Sarafu Network failed. Please try again later.", string(recipient)) res.Content = l.Get("Your invitation to %s to join Sarafu Network has been sent.", string(recipient))
return res, nil return res, nil
} }