-
Notifications
You must be signed in to change notification settings - Fork 84
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
Add the creds_envvar()
function
#159
Conversation
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.
Verbiage changes
Hey Rich, I tried the
This is my code:
Is there anything else I need to be doing? |
Try |
That worked! Thanks a lot! |
Oh one more question - is there a way to do custom css for the emails, i.e. change background color, add a logo in a corner, etc? |
This adds the
creds_envvar()
credential helper function. It's a variation oncreds()
(manual specification of values). The difference here is that the password can be specified in terms of an environment variable, usingSys.getenv()
internally to obtain the password value. The required value for thepass_envvar
arg puts it at the top of the argument signature.Fixes #149