-
Notifications
You must be signed in to change notification settings - Fork 200
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added support for SendGrid and standard SMTP #625
Conversation
Really good addition :) Thanks! |
Merry christmas! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perfect thanks :) have a happy christmas!
There's an error when trying to compile IHP/Mail.hs (for development): IHP/IHP/Mail.hs:22:1: error:
Could not find module ‘Network.Mail.SMTP’
Perhaps you meant Network.Mail.Mime (from mime-mail-0.5.0)
Use -v (or `:set -v` in ghci) to see a list of the files searched for.
|
22 | import qualified Network.Mail.SMTP as SMTP
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Am I doing something wrong? Skipping something? |
Until the next beta is released you need to add package smtp-mail to your default.nix. |
Alternative you can also do this in your default.nix: let
ihp = ./IHP;
haskellEnv = ... |
including docs