[Answered ]-Sending SMS Text message using django send_mail

2๐Ÿ‘

โœ…

I tested the following

from django.core.mail import send_mail
send_mail('','test','',['my_number@mynetwork'])

and I received this text:

FRM:admin@example.com
MSG:test

So you can keep the subject as an empty string to keep the subject from showing.

๐Ÿ‘คj_syk

Leave a comment