Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Communications Challenge
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
edugain
Communications Challenge
Commits
70709d6a
Commit
70709d6a
authored
8 months ago
by
Tobias Dussa
Browse files
Options
Downloads
Patches
Plain Diff
Now handles UTF-8 messages more resiliently.
parent
0de3a27a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
reaction-mailcreate/createMails.py
+3
-2
3 additions, 2 deletions
reaction-mailcreate/createMails.py
with
3 additions
and
2 deletions
reaction-mailcreate/createMails.py
+
3
−
2
View file @
70709d6a
...
@@ -20,6 +20,7 @@
...
@@ -20,6 +20,7 @@
from
email.generator
import
Generator
from
email.generator
import
Generator
from
email.message
import
EmailMessage
from
email.message
import
EmailMessage
from
email.mime.text
import
MIMEText
from
email.utils
import
formatdate
,
make_msgid
from
email.utils
import
formatdate
,
make_msgid
import
argparse
import
argparse
import
csv
import
csv
...
@@ -347,8 +348,8 @@ def createMail(data):
...
@@ -347,8 +348,8 @@ def createMail(data):
directory
=
os
.
path
.
dirname
(
output
)
directory
=
os
.
path
.
dirname
(
output
)
# Generate email body and attachments
# Generate email body and attachments
message
=
EmailMessage
(
)
message
=
MIMEText
(
template
.
render
(
data
)
)
message
.
set_c
ontent
(
template
.
render
(
data
)
)
message
.
set_c
harset
(
'
utf-8
'
)
for
attach
in
args
.
attach
:
for
attach
in
args
.
attach
:
with
open
(
attach
,
'
rb
'
)
as
attachment
:
with
open
(
attach
,
'
rb
'
)
as
attachment
:
message
.
add_attachment
(
attachment
.
read
(),
*
magic
.
from_file
(
attach
,
mime
=
True
).
split
(
'
/
'
))
message
.
add_attachment
(
attachment
.
read
(),
*
magic
.
from_file
(
attach
,
mime
=
True
).
split
(
'
/
'
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment