You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the OCW mailer makes assumptions about what's going to be configured that don't match well with what actually gets configured by the host app, especially in Speaker#mailer.configured?
The text was updated successfully, but these errors were encountered:
Edit config/initializers/01_open_conference_ware.rb to include the config that OCW expects to see:
# Set the default address from which to send outgoing mail
config.default_from_address = "[email protected]"
# Set an address to BCC on all outbound communication (optional)
config.default_bcc_address = "[email protected]"
# Fulfill the expectations of SpeakerMailer.configured?
config.email = {
"action_mailer" = {"enabled" => true}
"default_from_address" = config.default_from_address
}
Currently, the OCW mailer makes assumptions about what's going to be configured that don't match well with what actually gets configured by the host app, especially in Speaker#mailer.configured?
The text was updated successfully, but these errors were encountered: