Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
46657b8f
Commit
46657b8f
authored
Dec 17, 2013
by
Chris Rossi
Committed by
Diana Huang
Jan 16, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Grandfather email.
parent
9755216a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
7 deletions
+51
-7
lms/djangoapps/linkedin/management/commands/mailusers.py
+23
-7
lms/djangoapps/linkedin/templates/linkedin_grandfather_email.html
+28
-0
No files found.
lms/djangoapps/linkedin/management/commands/mailusers.py
View file @
46657b8f
...
...
@@ -69,12 +69,14 @@ class Command(BaseCommand):
self
.
send_email
(
user
,
certificate
)
emailed
.
append
(
certificate
.
course_id
)
account
.
emailed_courses
=
json
.
dumps
(
emailed
)
account
.
save
()
def
certificate_url
(
self
,
c
ourse
,
c
ertificate
,
grandfather
=
False
):
def
certificate_url
(
self
,
certificate
,
grandfather
=
False
):
"""
Generates a certificate URL based on LinkedIn's documentation. The
documentation is from a Word document: DAT_DOCUMENTATION_v3.12.docx
"""
course
=
get_course_by_id
(
certificate
.
course_id
)
tracking_code
=
'-'
.
join
([
'eml'
,
'prof'
,
# the 'product'--no idea what that's supposed to mean
...
...
@@ -101,23 +103,37 @@ class Command(BaseCommand):
Send the 'grandfathered' email informing historical students that they
may now post their certificates on their LinkedIn profiles.
"""
print
"GRANDFATHER: "
,
user
,
certificates
template
=
get_template
(
"linkedin_grandfather_email.html"
)
links
=
[
{
'course_name'
:
certificate
.
name
,
'url'
:
self
.
certificate_url
(
certificate
,
grandfather
=
True
)}
for
certificate
in
certificates
]
context
=
Context
({
'student_name'
:
user
.
profile
.
name
,
'certificates'
:
links
})
body
=
template
.
render
(
context
)
subject
=
'Congratulations! Put your certificates on LinkedIn'
self
.
send_email
(
user
,
subject
,
body
)
def
send_email
(
self
,
user
,
certificate
):
def
send_
triggered_
email
(
self
,
user
,
certificate
):
"""
Email a user that recently earned a certificate, inviting them to post
their certificate on their LinkedIn profile.
"""
template
=
get_template
(
"linkedin_email.html"
)
course
=
get_course_by_id
(
certificate
.
course_id
)
url
=
self
.
certificate_url
(
course
,
certificate
)
url
=
self
.
certificate_url
(
certificate
)
context
=
Context
({
'student_name'
:
user
.
profile
.
name
,
'course_name'
:
certificate
.
name
,
'url'
:
url
})
subject
=
'Congratulations! Put your certificate on LinkedIn'
body
=
template
.
render
(
context
)
subject
=
'Congratulations! Put your certificate on LinkedIn'
self
.
send_email
(
user
,
subject
,
body
)
def
send_email
(
self
,
user
,
subject
,
body
):
"""
Send an email.
"""
fromaddr
=
self
.
api
.
config
[
'EMAIL_FROM'
]
toaddr
=
'
%
s <
%
s>'
%
(
user
.
profile
.
name
,
user
.
email
)
send_mail
(
subject
,
body
,
fromaddr
,
(
toaddr
,))
lms/djangoapps/linkedin/templates/linkedin_grandfather_email.html
0 → 100644
View file @
46657b8f
{% load i18n %}
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
name=
"viewport"
content=
"initial-scale=1.0"
>
</head>
<body>
<p>
{% blocktrans with name=student_name %}
Dear {{student_name}},
{% endblocktrans %}
</p>
<p>
{% blocktrans with name=course_name %}
We've partnered with LinkedIn and now you can put your certificates on
your LinkedIn profile. Just use the links below.
{% endblocktrans %}
</p>
{% for cert in certificates %}
<p>
<b>
{{cert.course_name}}
</b>
:
<a
href=
"{{cert.url|safe}}"
>
<span>
in
<span>
{% blocktrans %}Add to profile{% endblocktrans %}
</a>
</p>
{% endfor %}
</body>
</html>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment