1. 08 Oct, 2014 1 commit
  2. 16 Oct, 2013 1 commit
  3. 11 Oct, 2013 1 commit
  4. 03 Sep, 2013 1 commit
  5. 29 Aug, 2013 4 commits
    • Add editable templates for bulk email · 8f93051d
      Adds the edX Marketing-approved template as html default.
      Brian Wilson committed
    • Change optout to use user.id instead of email. · d341d6d2
      Includes Data + Schema migrations for optout email -> user.id change.
      Note that migrations should be reversible.
      Jason Bau committed
    • Add delay to course bulk email task and use SITE_NAME for site url · 3b32d421
       Delay for possible race condition with fetching course email object.
       Use settings.SITE_NAME for host name to generate email footer url.
      Kevin Luo committed
    • Add bulk email feature for instructors, with optout option · 907bf6e1
      Adds a new Email link to the instructor dashboard for frontend interface to send
      email to course members. Adds a feature flag ENABLE_INSTRUCTOR_EMAIL to toggle this.
      Creates a new djangoapp bulk_email that handles this action by getting the recipient
      list and batching the emails to different celery tasks to do the actual sending.
      Requires lynx package to convert HTML email to plaintext. Handles SMTP errors by
      retrying or falling through to the next email. Adds the option to opt out of course
      specific emails in the user dashboard with an Email Settings link for each course.
      Uses severable configurable settings with defaults. DEFAULT_BULK_FROM_EMAIL
      specifies the from address for email. EMAILS_PER_TASK specifies the number of emails
      each celery task takes on. EMAIL_HOST, EMAIL_PORT, EMAIL_HOST_USER,
      EMAIL_HOST_PASSWORD, and EMAIL_USE_TLS for the SMTP email backend settings.
      
      Co-authored-by: Akshay Jagadeesh <akjags@gmail.com>
      Kevin Luo committed