Django admin app to send mail to users - django

Is there a Django app or extension that can be used from the admin panel to select users and send mails to them?
Possibly with a markup editor?

After a quick google search the only app I found that could fit is django-mailer.
Sample Use Cases
a site admin wants to send a one-off announcement to all users on a site
a site admin wants to send a one-off email to a subset of users (e.g. thank you note to users who completed a survey)
a site admin wants to send an email but wants to defer it to a particular date or time (e.g. send out at 9am tomorrow a reminder of the scheduled downtime at 10am)
a site admin wants to send a regular email to a subset of users (e.g. people who haven’t logged in for over a month)
Another way would be to customize yourself the admin. I invite you to read this thread:
Django Admin Customizing

Related

django redirect to other page and auto login to that page

Is there a way to redirect to other page and automatically log into that page?
So it's like I make django webpage with login and create link to facebook. When user clicks to facebook link, it should automatically login to his facebook page. Of course, I will have his facebook username and password on db I used to create the website.
Is this possible? Basically, I am trying to create interface page on django with link to several different webpage and make user access to his page by simply logon to this interface page alone.
I suggest that you have a look at the Django-allauth, which is an Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication
It does most of the things you want, you can go through the documentation
https://django-allauth.readthedocs.io/en/latest/index.html

RingCentral select extension user and log them out of app

Is there any option for RingCentral Admin to log out their extension users from their logged in RC apps.
Example: if there are 3 extension users logged into their RC apps mobile or desktop, Admin wants one of the user to log out from all the app he or she is logged in, how can admin do that for the user?
Can it be done from RingCentral Admin portal?
This feature is still not there in RingCentral as of now.
I can see the same requirement is requested as a feature request here in their Idea portal:
https://ideas.ringcentral.com/ideas/CUSTCOM-I-2858
They will review this Idea request and their product team may implement this in next version.

Django Web Application, Facebook login

I am building a basic social media web application and I would like my only login point to be via facebook login. After doing a fare amount of research, I have seen multiple third party authorization frameworks that plug in with facebook, but I was wondering if there were any opinions on what the best foot forward would be.
Additionally, how would I go about still being able to use sessions/cookies within Django if I use fb login?
All answers are appreciated!
You can use SocialAuth (https://github.com/python-social-auth/social-app-django), this app allows you to let users log in via many common SocialMedia-accounts, e.g. facebook. Upon login, the app will create a user in your database, which you can then use as if the user logged in with a local account. Therefore, the session will still be handled by django, fb only sends you some information about the user (e.g. first- and lastname, email, etc. [configurable in your settings.py])

How django sessions work

I am new to django i made a registration page and login page now i want a user registered to login to my website when a user is logged in i want to associate a session for user which only dies when he logs out or he closes the browser
now whenever the user loads the page even after a week if the browser is not closed he should be granted access.Now the django is storing sessions in its database but will i be able to authenticate the user as different users have different permissions.can someone suggest any resource for my requirement.
I found what i needed http://gavinballard.com/associating-django-users-sessions/ its by creating a custom model extending the default one.

Django Creating app objects

I have been following along with the django tutorial and have Polls appearing in the administration panel of the site.
Additionally, I have, using django-registration package, created a way to allow a user to login and register a new account.
How do I grant this user permission to create objects in the Polls such that appear in the admin panel of the website?
Also, these users will not be staff so they will not be able to log in to the administration portion of the website. Is there a way to create Poll objects in a form?
Also, these users will not be staff so they will not be able to log in to the administration portion of the website. Is there a way to create Poll objects in a form?
This is literally what you do on page 4 of the django tutorial. Finish the tutorial, and you will answer your own question.
https://docs.djangoproject.com/en/dev/intro/tutorial04/#write-a-simple-form