Надеюсь, заголовка достаточно, чтобы понять мою проблему. я просто хочу добавить в свой email_ html фоновое изображение.
это мой email_ html
{% load static %}
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-image: url('https://myschoolapp.school.com/static/emailbackground.jpg');
background-repeat: repeat-y no-repeat;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="20">
<tr>
<td>
<p>Content on a pretty background image.</p>
</td>
</tr>
</table>
</body>
</html>