Skip to content

Commit

Permalink
[FIX] mass_mailing_event_track: Correctly set recipients on mail wizard
Browse files Browse the repository at this point in the history
Since odoo@f93c4f4 the
feature is not setting the recipients correctly when trying to send a mass mailing
to all the event tracks speakers.
  • Loading branch information
tivisse committed Jun 12, 2018
1 parent 05f8bbd commit 9205238
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/mass_mailing_event_track/models/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def action_mass_mailing_track_speakers(self):
view_mode='form',
target='current',
context=dict(
default_mailing_model=self.env.ref('website_event_track.model_event_track').id,
default_mailing_model_id=self.env.ref('website_event_track.model_event_track').id,
default_mailing_domain="[('event_id', 'in', %s), ('stage_id.is_cancel', '!=', True)]" % self.ids,
),
)
Expand Down

0 comments on commit 9205238

Please sign in to comment.