python - Django休息框架: sendgrid email with attachment without model only filefield to open file and send button to send email

标签 python django django-rest-framework sendgrid

我是 Django Rest 框架的新手。
我正在尝试发送带有附件的电子邮件。

这是我的代码。

模型.py


class EmailModel(models.Model):
    upload_file = models.FileField(upload_to='location/location/files', blank=False)
    class Meta:
        verbose_name = 'Applicant CSV Upload'
        verbose_name_plural = 'Applicant CSV Upload'


admin.py

@admin.register(EmailModel)
class EmailAdmin(admin.ModelAdmin):
    class Meta:
      model = EmailModel

View.py


def send_email():
    email = EmailMessage(
        'Title',
        ('abc', 'abc@gmail.com', '123123123'),
        'abc@gmail.com',
        ['abc@gmail.com']
    )
    email.attach_file(EmailViewSet.upload_file)
    email.send()

class EmailViewSet(viewsets.ModelViewSet):
    queryset = EmailModel.objects.all()
    serializer_class = EmailSerializer
    def create(self, request, *args, **kwargs):
        send_mail(' Test Subject here', 'Test here is the message.', 'abc@gmail.com', ['abc@gmail.com'], fail_silently=False)
        response = super(EmailViewSet, self).create(request, *args, **kwargs)
        send_email()  # sending mail
        data = [{'location': request.data.get('location'), 'image': file} for file in request.FILES.getlist('image')]
        serializer = self.get_serializer(data=data, many=True)
        serializer.is_valid(raise_exception=True)
        self.perform_create(serializer)
        headers = self.get_success_headers(serializer.data)
        message = EmailMessage(subject='Applicant data', body='PFA', from_email='abc@gmail.com',
                               to='abc@gmail.com', bcc='abc@gmail.com', connection=None,
                               attachments=data, headers=self.data, cc='abc@gmail.com', reply_to=None)
        # Attach file
        # with open(attachment, 'rb') as file:
        #     message.attachments = [
        #     (attachment, file.read(), 'application/pdf')
        # ]
        return response, message.send(), Response(serializer.data, status=status.HTTP_201_CREATED, headers=headers)

序列化器.py

class EmailSerializer(serializers.ModelSerializer):
    class Meta:
        model = EmailModel
        fields = ('upload_file',)

settings.py


EMAIL_HOST = 'smtp.sendgrid.net'
EMAIL_HOST_USER = 'apikey' # this is exactly the value 'apikey'
EMAIL_HOST_PASSWORD = 'here i am using my sendgrid api key directy' # this is your API key
EMAIL_PORT = 587
EMAIL_USE_TLS = True
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
DEFAULT_FROM_EMAIL = 'here i am using same gmail id on which i have created my send grid account'

在view.py和serializer.py中 我已经提到了我尝试过的发送电子邮件的每一种方法,所以这就是为什么它如此困惑。没有一种方法有效。 甚至 create 方法根本不调用。

这显示在我的 API 管理上,我想更改要发送的保存按钮文本。

This is showing up on my api admin i want to change save button text to send.

  1. 我不想创建模型。这是为了在管理员上显示我所需的模型而创建的。
  2. 也不想将文件保存在文件夹中。这很节省。
  3. filefiled 只需打开文件,然后在我的硬编码电子邮件地址上按下保存/发送按钮时,通过电子邮件发送该文件。

最佳答案

您可以创建不需要模型的自定义管理页面。 This question解决了这个问题。

现在,当您创建自定义页面时,在 View 中您可以简单地使用 sendgrid 提供的 python API 并执行您想要实现的任何操作。这是python documentation对于同样的。

关于python - Django休息框架: sendgrid email with attachment without model only filefield to open file and send button to send email,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58489166/

相关文章:

python - 管理中的可翻译 Manytomany 字段生成许多查询

exec() 中的 python3 print()

python - 不使用 VS Code 扩展的 Azure Function 部署

Python:如何计算协方差矩阵并像 map 结构一样导出数据

django - 如何在 Django 中基于枚举为模型字段设置默认值?

python - 系统日期格式不使用 django 语言环境

python - 如何在python中初始化一个集合并打印一个空集合{}?

django - 在Swagger中添加GET参数

python - TemplateDoesNotExist - Django 错误

python - Django REST 框架 : TestCase is not returning correct queryset