Re: Help on Email Sending with the Gmail SMTP server.

2024-12-05 Thread Luis Zárate
2024 at 6:48:46 PM UTC+5:30 ALINDA Fortunate > wrote: > >> Hello Team, I am requesting for assistance on how to send email using >> Django by the Gmail SMTP server, I have set up the app configured the >> credentials but i am getting this error message, some help. >&g

Re: Help on Email Sending with the Gmail SMTP server.

2024-12-05 Thread George Joseph
Hi, Try by creating app password from your g-suite. Thanks and regards. On Thursday, October 31, 2024 at 6:48:46 PM UTC+5:30 ALINDA Fortunate wrote: > Hello Team, I am requesting for assistance on how to send email using > Django by the Gmail SMTP server, I have set up the app configur

Re: Help on Email Sending with the Gmail SMTP server.

2024-11-01 Thread ALINDA Fortunate
namics On Thu, Oct 31, 2024, 21:38 Sadiq Cp wrote: > Hi Alinda, > > So you are using smtplib for email. From my experience on working with > smtplib, its a good choice for testing mail during development phase. But > in production, it takes a long time. > > Try choosing WEB3f

Re: Help on Email Sending with the Gmail SMTP server.

2024-10-31 Thread Sadiq Cp
Hi Alinda, So you are using smtplib for email. From my experience on working with smtplib, its a good choice for testing mail during development phase. But in production, it takes a long time. Try choosing WEB3forms. Its easy to implement and better in production. Thanks.. On Thu, 31 Oct

Re: Help on Email Sending with the Gmail SMTP server.

2024-10-31 Thread Reddy Tintaya
our Gmail to use third party apps?? >> >> On Thu, Oct 31, 2024, 18:48 ALINDA Fortunate > <mailto:alindafortuna...@gmail.com>> wrote: >>> Hello Team, I am requesting for assistance on how to send email using >>> Django by the Gmail SMTP server, I have set up

Re: Help on Email Sending with the Gmail SMTP server.

2024-10-31 Thread ALINDA Fortunate
s://support.google.com/a/answer/9003945?hl=en > > Have you configured it the setting for your Gmail to use third party apps?? > > On Thu, Oct 31, 2024, 18:48 ALINDA Fortunate > wrote: > >> Hello Team, I am requesting for assistance on how to send email using >>

Re: Help on Email Sending with the Gmail SMTP server.

2024-10-31 Thread Sang
unate wrote: > Hello Team, I am requesting for assistance on how to send email using > Django by the Gmail SMTP server, I have set up the app configured the > credentials but i am getting this error message, some help. > > smtplib.SMTPAuthenticationError: (535, b'5.7.8

Re: Help on Email Sending with the Gmail SMTP server.

2024-10-31 Thread Pablo Riquelme
spam and block it, I use zeptomail from Zoho to send transactional emails, it's cheap and less difficult to gain prod access El jue, 31 de oct de 2024, 10:18 a. m., ALINDA Fortunate < alindafortuna...@gmail.com> escribió: > Hello Team, I am requesting for assistance on how to send

Re: Help on Email Sending with the Gmail SMTP server.

2024-10-31 Thread Nathaniel Anania
Hi Alinda, With Google, you have to create a special app password don't use password of your email . follow this guide to create app password How To create App Password <https://knowledge.workspace.google.com/kb/how-to-create-app-passwords-09237> . Regards, Nathaniel Anania On

Help on Email Sending with the Gmail SMTP server.

2024-10-31 Thread ALINDA Fortunate
Hello Team, I am requesting for assistance on how to send email using Django by the Gmail SMTP server, I have set up the app configured the credentials but i am getting this error message, some help. smtplib.SMTPAuthenticationError: (535, b'5.7.8 Username and Password not accepted. For

Re: Unable to send activation email. user authentication

2024-09-07 Thread Asoma Samuel
y > >Django settings, but this results in the following error when running > >python manage.py runserver: > >javascript > >Copy code > >TypeError: getfqdn() takes 0 positional arguments but 1 was given > > > >When I comment out the override, the server sta

Unable to send activation email. user authentication

2024-09-06 Thread Asoma Samuel
*Title: Issue with socket.getfqdn Override Affecting Email Sending in Django* *Body:* Hello, I’m encountering an issue with Django when trying to override the socket.getfqdn function to use a local hostname for email configuration. The override is causing errors when starting the Django

Email verification in Django + Djoser

2024-04-10 Thread Okkert Joubert
I have a register page in my django app and I am using djoser for the end point to create and users etc, when I register with an email ending in .com (e.g. gmail.com) it works but when I enter an email ending with .co.za it does not work -- You received this message because you are subscribed

RE: How to send email from django without authenticate smtp server

2024-03-05 Thread Mike Dewhirst
Why don't you use TLS so your connection with the server is encrypted? Port 25 is a bit ancient.--(Unsigned mail from my phone) Original message From: Praveen Chaudhary Date: 5/3/24 04:50 (GMT+10:00) To: django-users@googlegroups.com Subject: How to send email from d

RE: How to send email from django without authenticate smtp server

2024-03-05 Thread Mike Dewhirst
Why don't you use TLS so your connection with the server is encrypted? Port 25 is a bit ancient.--(Unsigned mail from my phone) Original message From: Praveen Chaudhary Date: 5/3/24 04:50 (GMT+10:00) To: django-users@googlegroups.com Subject: How to send email from d

Re: How to send email from django without authenticate smtp server

2024-03-04 Thread jose kj
Ask chatgpt or bard On Mon, 4 Mar, 2024, 11:20 pm Praveen Chaudhary, wrote: > Hello everyone, > > Basically, I want to send the email from django using smtp server. I have > my own smtp server domain host at port 25, but don't want to pass > EMAIL_HOST_USER & EMAIL_H

How to send email from django without authenticate smtp server

2024-03-04 Thread Praveen Chaudhary
Hello everyone, Basically, I want to send the email from django using smtp server. I have my own smtp server domain host at port 25, but don't want to pass EMAIL_HOST_USER & EMAIL_HOST_PASSWORD. I am using EmailMultiAlernatives to send the html and file, I am unable to send emai

Re: Failed to send Email by Django

2023-03-24 Thread 'Kasper Laudrup' via Django users
On 24/03/2023 05.16, bing wrote: I am using the email module in Django to inform of users with their registration. Sometimes it can send email successfully, but more often, it fails. I searched for many solutions, but did not change this situation. That is not really related to Django but

Failed to send Email by Django

2023-03-24 Thread bing
I am using the email module in Django to inform of users with their registration. Sometimes it can send email successfully, but more often, it fails. I searched for many solutions, but did not change this situation. The following is what I have configured: settings.py: EMAIL_BACKEND

Re: it is very hard to find both email and phone number as username to login

2023-02-26 Thread Raphael Polanco
The username would be both a security risk and too damn long. On Sun, Feb 26, 2023 at 9:20 AM Adeyemi Deji wrote: > Y do u need both? > > On Sun, 26 Feb 2023, 15:13 Manobhav Joshi, wrote: > >> is there any way to use both email and phone number as username to login >>

Re: it is very hard to find both email and phone number as username to login

2023-02-26 Thread Paul Kudla (SCOM.CA Internet Services Inc.)
uth.backends.ModelBackend', ) email-auth.py place in project root or /usr/local/lib/python2.7/site-packages/Django-1.11.29-py2.7.egg/django/contrib/auth use phone number for the user account id and email address will kick in automatically can use either

Re: it is very hard to find both email and phone number as username to login

2023-02-26 Thread Adeyemi Deji
Y do u need both? On Sun, 26 Feb 2023, 15:13 Manobhav Joshi, wrote: > is there any way to use both email and phone number as username to login > safely which we can use authenticate() function. > > -- > You received this message because you are subscribed to the Google Groups

it is very hard to find both email and phone number as username to login

2023-02-26 Thread Manobhav Joshi
is there any way to use both email and phone number as username to login safely which we can use authenticate() function. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from i

Re: Email Sending In Django not working

2023-01-24 Thread It's Aladdin
msung Galaxy smartphone. >> >> Original message ---- >> From: Lakshyaraj Dash >> Date: 14/11/2022 13:16 (GMT+01:00) >> To: django-users@googlegroups.com >> Subject: Re: Email Sending In Django not working >> >> Please watch this v

Re: Email Sending In Django not working

2022-11-14 Thread peteru mimo
Dash >> Date: 14/11/2022 13:16 (GMT+01:00) >> To: django...@googlegroups.com >> Subject: Re: Email Sending In Django not working >> >> Please watch this video and ensure that you've properly configured the >> port numbers also your email address and p

Re: Email Sending In Django not working

2022-11-14 Thread Lakshyaraj Dash
aj Dash > Date: 14/11/2022 13:16 (GMT+01:00) > To: django-users@googlegroups.com > Subject: Re: Email Sending In Django not working > > Please watch this video and ensure that you've properly configured the > port numbers also your email address and password. > *Note: Your e

Re: Email Sending In Django not working

2022-11-14 Thread peterumimo2
I have watched the video please the app name must be any name or your project nameSent from my Samsung Galaxy smartphone. Original message From: Lakshyaraj Dash Date: 14/11/2022 13:16 (GMT+01:00) To: django-users@googlegroups.com Subject: Re: Email Sending In Django not

Re: Email Sending In Django not working

2022-11-14 Thread Lakshyaraj Dash
Please watch this video and ensure that you've properly configured the port numbers also your email address and password. *Note: Your email password should be the app password generated no your actual Gmail password* https://youtu.be/uVDq4VOBMNM On Mon, Nov 14, 2022, 17:41 peteru mimo

Re: Email Sending In Django not working

2022-11-14 Thread peteru mimo
n. Please update you email password with the generated app > password. > > Steps: > 1. Go to manage my Google account > 2. Go to security tab > 3. Enable two step verification and verify yourself > 4. Create your app passwords after the app passwords in the security > settin

Re: Email Sending In Django not working

2022-11-09 Thread Ahmed omar miladi
you can use the function send mail of django Téléchargez Outlook pour iOS<https://aka.ms/o0ukef> De : django-users@googlegroups.com de la part de It's Aladdin Envoyé : Wednesday, November 9, 2022 12:06:33 PM À : django-users@googlegroups.com Objet

Re: Email Sending In Django not working

2022-11-09 Thread Lakshyaraj Dash
Even if Google has stopped the support, emails can be still sent using two step verification and generating app passwords after enabling two step verification. Please update you email password with the generated app password. Steps: 1. Go to manage my Google account 2. Go to security tab 3

Re: Email Sending In Django not working

2022-11-09 Thread It's Aladdin
Google hast stopped less secure apps, so u cant send email messages anymore with ur email and password, U will have to find some other way of sending mails. On Wed, 9 Nov, 2022, 16:26 peteru mimo, wrote: > Good day team, > > I have been facing this challenge in sending mail in django

Re: Email Sending In Django not working

2022-11-09 Thread Jitendra kumar Patra
L_HOST_PASSWORD = 'email_password' >> EMAIL_USE_TLS = True >> >> Any solution will be appreciated. Thank you >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Django users" group. >> To u

Re: Email Sending In Django not working

2022-11-09 Thread Lakshyaraj Dash
gt; *Settings* > EMAIL_HOST = 'smtp.google.com' > EMAIL_POST = '587' > EMAIL_HOST_USER = 'myemail' > EMAIL_HOST_PASSWORD = 'email_password' > EMAIL_USE_TLS = True > > Any solution will be appreciated. Thank you > > -- > You rec

Re: Email Sending In Django not working

2022-11-09 Thread peteru mimo
AIL_POST = '587' > EMAIL_HOST_USER = 'myemail' > EMAIL_HOST_PASSWORD = 'email_password' > EMAIL_USE_TLS = True > > Any solution will be appreciated. Thank you > > -- > You received this message because you are subscribed to the Google Groups > &q

Email Sending In Django not working

2022-11-09 Thread peteru mimo
because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/1ed5b9fc-3370-413c-b4cb-edeb2451d8f4n%40googlegroups.com.

Re: manage.py loaddata: Problem installing fixture... Email matching query does not exist

2022-10-17 Thread Luiz Angelo Daros de Luca
emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAJq09z7ZMFHkUy46b2tJHLcny_bHmMyCfzP%3DCRQwXMgQZzJnzQ%40mail.gmail.com.

Re: manage.py loaddata: Problem installing fixture... Email matching query does not exist

2022-09-27 Thread Luiz Angelo Daros de Luca
ls from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/e8afbea0-8517-41ee-94ef-4e893005dae4n%40googlegroups.com.

Re: Fetch email from google

2022-07-08 Thread Paul Kudla (SCOM.CA Internet Services Inc.)
fetchmail (i used to use that to pop other peoples email and forward to my customers ) this was mainly used to migrate from one email account to another (gmail, aol, yahoo etc) issue is there is no known easy way of saving the tokens etc that are required for oauth2 even patchs for fetchmail

Fetch email from google

2022-07-07 Thread Lakshyaraj Dash XI-D 25
Hi guys I want a solution from your side. I am having a cutom authentication in django. I want to have a login with google option that gets the user's email address and authenticates with django backend. Note that the username must not be the google username, it should be the username sav

manage.py loaddata: Problem installing fixture... Email matching query does not exist

2022-07-07 Thread Moritz Both
/python3.8/site-packages/django/db/models/fields/related_descriptors.py", line 154, in get_object return qs.get(self.field.get_reverse_related_filter(instance)) File "*/home/daneben/*.local/lib/python3.8/site-packages/django/db/models/query.py", line 435, in get raise sel

Re: Django email | Gmail | Outlook

2022-06-13 Thread Abdul Qoyyuum
There are other alternatives if you use Django-Anymail package. Go to https://anymail.dev/en/stable/ to see a list of supported 3rd party email services. Some have free limits for you to use. Good luck! On Monday, May 30, 2022 at 7:22:38 PM UTC+8 devfem...@gmail.com wrote: > *Google* no lon

Re: Problems sending email with django

2022-06-09 Thread Roger Gammans
le Groups >"Django users" group. >To unsubscribe from this group and stop receiving emails from it, send an >email to django-users+unsubscr...@googlegroups.com. >To view this discussion on the web visit >https://groups.google.com/d/msgid/django-users/75a6b1d9-a0da-489b-a8b

Re: Problems sending email with django

2022-06-09 Thread adeyinka newton
Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to django-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/75a6b1d9-a0da

Problems sending email with django

2022-06-08 Thread Israel Akinoso
Please is there anyone who has integrated mailjet into their django project, I really need guidance -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: Django email | Gmail | Outlook

2022-06-02 Thread Paul Kudla (SCOM.CA Internet Services Inc.)
oronto 416.642.7266 Main 1.866.411.7266 Fax 1.888.892.7266 Email p...@scom.ca On 5/31/2022 4:31 PM, Dev femibadmus wrote: i have solved my issue using the gmailapi anyone having same issue?? On Mon, May 30, 2022 at 2:57 PM Dev femibadmus <mailto:devfemibad...@gmail.com>> wrote: Wow

Re: Django email | Gmail | Outlook

2022-05-31 Thread Dev femibadmus
> >> just a heads up, other non-main stream providers (like myself) have >> other devices in place for security and will not force customers to >> migrate, maybe look for a local provider? >> >> I will eventually handle oauth2 etc but only when forced to (government >

Re: Django email | Gmail | Outlook

2022-05-30 Thread Dev femibadmus
> > just a heads up, other non-main stream providers (like myself) have > other devices in place for security and will not force customers to > migrate, maybe look for a local provider? > > I will eventually handle oauth2 etc but only when forced to (government > contracts etc) >

Re: Django email | Gmail | Outlook

2022-05-30 Thread Paul Kudla (SCOM.CA Internet Services Inc.)
on (if you are in unix) is to start up a postfix / dovecot email server instance where you are in control of the protocol's used? this way your in complete control of your emails in both directions. Its a bit of work but leaving things to the main stream providers isn't Happy

Django email | Gmail | Outlook

2022-05-30 Thread Dev femibadmus
*Google* no longer support less seureappswhat next? is there anyway we can use gmail for Django email? if no way please send the best lesson for *Outlook* configuration :) -- You received this message because you are subscribed to the Google Groups "Django users"

Re: Email verification

2022-02-25 Thread Rushikesh Chavan
thank you antonis , abubakar , sangeeth ,sebastian for helping On Thu, 24 Feb 2022 at 02:18, Sebastian Jung wrote: > Hey, > > a tutorial you find here: > > How to Signup User and Send Verification Email in Django - Django Tutorial > (studygyaan.com) > <https://stud

Re: Email verification

2022-02-23 Thread Sebastian Jung
Hey, a tutorial you find here: How to Signup User and Send Verification Email in Django - Django Tutorial (studygyaan.com) <https://studygyaan.com/django/how-to-signup-user-and-send-confirmation-email-in-django> Am Mi., 23. Feb. 2022 um 16:34 Uhr schrieb Rushikesh Chavan < rushijs...@

Re: Email verification

2022-02-23 Thread Sangeeth Joseph
>> I am new to django, i am working on one project which requires a feature >> of email verification , how do I do it? Like , I want to send the email to >> the user who registered on my site and give one link in this mail which >> will verify the user >> >> -- &

Re: Email verification

2022-02-23 Thread Abubakar Siddique
You can use djoser On Wed, Feb 23, 2022, 8:35 PM Rushikesh Chavan wrote: > I am new to django, i am working on one project which requires a feature > of email verification , how do I do it? Like , I want to send the email to > the user who registered on my site and give one link in

Re: Email verification

2022-02-23 Thread Antonis Christofides
You can try django-registration-redux <https://django-registration-redux.readthedocs.io/en/latest/>. Regards, Antonis On 23/02/2022 17.10, Rushikesh Chavan wrote: I am new to django, i am working on one project which requires a feature of email verification  , how do I do it? Like ,

Email verification

2022-02-23 Thread Rushikesh Chavan
I am new to django, i am working on one project which requires a feature of email verification , how do I do it? Like , I want to send the email to the user who registered on my site and give one link in this mail which will verify the user -- You received this message because you are

Re: error email in django

2022-01-21 Thread Saad Olamilekan
Maybe I didn't get the question better, but if what am thinking, like if you want to be using email login to your app instead of username think you have to do so Check the link to know if your question tally to my answer. https://www.django-rest-framework.org/tutorial/1-serialization/ On Sat

Re: error email in django

2022-01-21 Thread Richard Myers
Get Outlook for iOS<https://aka.ms/o0ukef> From: django-users@googlegroups.com on behalf of Aksh Desai Sent: Friday, January 21, 2022 2:06 PM To: django-users@googlegroups.com Subject: Re: error email in django ok My problem is solved in django email.

Re: error email in django

2022-01-21 Thread Aksh Desai
ok My problem is solved in django email. Thank you On Fri, 21 Jan 2022 at 18:14, Kasper Laudrup wrote: > On 21/01/2022 00.37, Saad Olamilekan wrote: > > Have you install rest frame work then, insert it to register app in > setting? > > > > No. Why would I want to do th

Re: error email in django

2022-01-21 Thread Kasper Laudrup
Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/98eebc35-98fd-c644-9437-1c

Re: error email in django

2022-01-20 Thread Saad Olamilekan
se you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to django-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgi

Re: error email in django

2022-01-20 Thread Kasper Laudrup
That should tell you what to do. Kind regards, Kasper Laudrup -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com.

error email in django

2022-01-20 Thread Aksh Desai
nsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/a600457d-7228-44b2-b8b4-e3dba76bd901n%40googlegroups.com.

Re: Defining a custom email backend

2021-09-23 Thread Sujata Aghor
> Can you suggest anything about this ? > Thanks > > > On Thu, Sep 23, 2021 at 10:57 AM sum abiut wrote: > >> If you don't mind sharing your code here. >> >> cheers, >> >> On Thu, Sep 23, 2021 at 4:17 PM Sujata Aghor >> wrote: >> &g

Re: Defining a custom email backend

2021-09-22 Thread sum abiut
p 23, 2021 at 10:57 AM sum abiut wrote: > >> If you don't mind sharing your code here. >> >> cheers, >> >> On Thu, Sep 23, 2021 at 4:17 PM Sujata Aghor >> wrote: >> >>> Hello Everyone, >>> I want to use different values of - EMA

Re: Defining a custom email backend

2021-09-22 Thread Sujata Aghor
M Sujata Aghor > wrote: > >> Hello Everyone, >> I want to use different values of - EMAIL_HOST_USER & >> EMAIL_HOST_PASSWORD for each of my users. I will take those values from >> database and not from settings.py >> >> In django documentation I can see only a si

Re: Defining a custom email backend

2021-09-22 Thread sum abiut
t; settings.py > > In django documentation I can see only a single paragraph about defining a > custom email backend, which is not giving me enough ideas. > > If I Try to change value of EMAIL_HOST_USER in script, it gives me below > error - > send_mail() got an unexpected k

Defining a custom email backend

2021-09-22 Thread Sujata Aghor
Hello Everyone, I want to use different values of - EMAIL_HOST_USER & EMAIL_HOST_PASSWORD for each of my users. I will take those values from database and not from settings.py In django documentation I can see only a single paragraph about defining a custom email backend, which is not givin

context.py values not render into tamplate when log in from email link

2021-09-20 Thread Sujata Aghor
I have set some variables in context.py, which need to be rendered in the base template of an application. It's working fine when I normally log in into the system. BUT I have an email workflow feature. So when I log in via a link in email, that time it won't render the values i

Re: Message communication in both Text and Email

2021-07-19 Thread dev burna
be submitted and received using a smartphone and the same > message can be recorded as an email > 2. When user wants to reply to a message, he/she should be able to use a > browser or a smart phone > 3. I guess we might need to allow users to have preferences for messaging > so that

Re: Message communication in both Text and Email

2021-07-19 Thread Divyesh Khamele
ce items. Is there any open > source API available to achieve such functionality. > > In detailed flow: > > 1. A message can be submitted and received using a smartphone and the same > message can be recorded as an email > 2. When user wants to reply to a message, he/she shoul

Message communication in both Text and Email

2021-07-18 Thread Ram
source API available to achieve such functionality. In detailed flow: 1. A message can be submitted and received using a smartphone and the same message can be recorded as an email 2. When user wants to reply to a message, he/she should be able to use a browser or a smart phone 3. I guess we might

Re: Email Form with attachments

2021-07-14 Thread khokon dev
fasfas On Monday, July 5, 2021 at 3:35:30 AM UTC+6 guitard...@gmail.com wrote: > Attachments need to be written to mail headers using MIME. > > This article gives a good breakdown > https://stackoverflow.com/questions/1633109/creating-a-mime-email-template-with-images-to-send-with-p

Re: Email Form with attachments

2021-07-04 Thread David Crandell
Attachments need to be written to mail headers using MIME. This article gives a good breakdown https://stackoverflow.com/questions/1633109/creating-a-mime-email-template-with-images-to-send-with-python-django On Sunday, July 4, 2021 at 10:30:10 AM UTC-5 sebasti...@gmail.com wrote: > He

Email Form with attachments

2021-07-04 Thread sebasti...@gmail.com
Hello, i need a form where i have normal email fields like: to_address, from_address, subject, message and also i drag and drop zone where i can drop attachments. I have allready implement a normal drag and drop zone in another form where i can drag and drop files and it is upload und stored

Re: django send defferent html message to defferent email address

2021-07-03 Thread Avi shah
mail.com wrote: > >> from django.conf import settings >> from django.core.mail import send_mail >> >> def valorant_view(request): >> if (valorant_registration.objects.count() <= 160): >> if request.method == 'POST': >>

Re: django send defferent html message to defferent email address

2021-07-03 Thread SKYLINE TV
last_name = request.POST['last_name'] > email = request.POST['email'] > mobile_number = request.POST['mobile_number'] > branch = request.POST['mobile_number'] > dicord_id = request.POST['dicor

Re: django send defferent html message to defferent email address

2021-07-03 Thread Avi shah
request.POST['last_name'] email = request.POST['email'] mobile_number = request.POST['mobile_number'] branch = request.POST['mobile_number'] dicord_id = request.POST['dicord_id'] valorant

django send defferent html message to defferent email address

2021-07-03 Thread SKYLINE TV
i am currently building a contact us form. when my users filed the form and submit it will send them welcome message and send also forward the user data to my email. i was able to used mailMultiAlternatives to achieve sending the html template to my users with the code below

Re: SChedule email

2021-07-01 Thread Luis Zárate
="Dispatch_scheduled_mail", > reject_on_worker_lost=True, ignore_result=True) > def schedule_mail(): > message = render_to_string('app/schedule_mail.html') > mail_subject = 'Scheduled Email' to_email = getmail email = > EmailMessage(mail_subject, message,

Re: SChedule email

2021-07-01 Thread SKYLINE TV
rom django.core.mail import EmailMessage* @periodic_task ( run_every=(crontab(hour=3, minute=34)), #runs exactly at 3:34am every day name="Dispatch_scheduled_mail", reject_on_worker_lost=True, ignore_result=True) def schedule_mail(): message = render_to_string('app/schedule_mail.html&

Re: SChedule email

2021-07-01 Thread divya murugulla
a murugulla wrote: > >> i cannot use celery suggest me something different >> >> On Thursday, July 1, 2021 at 6:27:51 PM UTC+5:30 aadil1...@gmail.com >> wrote: >> >>> Use *Django-celery* >>> >>> On Thu, 1 Jul, 2021, 6:23 PM divya murugulla,

Re: SChedule email

2021-07-01 Thread sachinbg sachin
ango-celery* >> >> On Thu, 1 Jul, 2021, 6:23 PM divya murugulla, >> wrote: >> >>> HI, >>> >>> I wanted to schedule a email every jan and aug 6 monthly basis without >>> celery using settings.py. Can anyone help? >>> >>>

Re: SChedule email

2021-07-01 Thread divya murugulla
i cannot use celery suggest me something different On Thursday, July 1, 2021 at 6:27:51 PM UTC+5:30 aadil1...@gmail.com wrote: > Use *Django-celery* > > On Thu, 1 Jul, 2021, 6:23 PM divya murugulla, > wrote: > >> HI, >> >> I wanted to schedule a email every ja

Re: SChedule email

2021-07-01 Thread Julio Cojom
I remember a python library called django-cron, it's stable in Linux environments El jue., 1 de julio de 2021 6:54 a. m., divya murugulla < divyamurugu...@gmail.com> escribió: > HI, > > I wanted to schedule a email every jan and aug 6 monthly basis without > celery using

Re: SChedule email

2021-07-01 Thread Aadil Rashid
Use *Django-celery* On Thu, 1 Jul, 2021, 6:23 PM divya murugulla, wrote: > HI, > > I wanted to schedule a email every jan and aug 6 monthly basis without > celery using settings.py. Can anyone help? > > once in every 6months mail should be triggered > > -- > You re

SChedule email

2021-07-01 Thread divya murugulla
HI, I wanted to schedule a email every jan and aug 6 monthly basis without celery using settings.py. Can anyone help? once in every 6months mail should be triggered -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe

Re: 🚨[URGENT] - 😥 Scrape Youtube Channel Email | Bypass Captcha 👀

2021-06-21 Thread Franck Tchouanga
https://www.fiverr.com/share/GdrzWd On Mon, Jun 21, 2021 at 7:22 PM VISHESH MANGLA < f20170...@pilani.bits-pilani.ac.in> wrote: > Use selenium > > On Sun, Jun 20, 2021, 06:29 Vrushang Desai > wrote: > >> Hi guys, >> *I'm trying to bypass youtube captcha &a

Re: 🚨[URGENT] - 😥 Scrape Youtube Channel Email | Bypass Captcha 👀

2021-06-21 Thread VISHESH MANGLA
Use selenium On Sun, Jun 20, 2021, 06:29 Vrushang Desai wrote: > Hi guys, > *I'm trying to bypass youtube captcha & download email of the channel > owner.* > > I would really like to know how can one actually solve it? > > As I'm facing issues with youtube,

Re: PLS HELP!! - SCRAPE YOUTUBE CHANNEL EMAIL

2021-06-21 Thread Sunday Iyanu Ajayi
f yes, > Pls reply! > Thanks. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to django-users+unsubscr...@googlegroups.com

Re: PLS HELP!! - SCRAPE YOUTUBE CHANNEL EMAIL

2021-06-20 Thread Jacob Greene
to scrape Youtube Channels Emails? >> >> With Django/Python? >> >> If yes, >> Pls reply! >> Thanks. >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Django users" group. >> To u

Re: PLS HELP!! - SCRAPE YOUTUBE CHANNEL EMAIL

2021-06-20 Thread Priyesh Ranjan
e subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to django-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-user

Re: 🚨[URGENT] - 😥 Scrape Youtube Channel Email | Bypass Captcha 👀

2021-06-20 Thread Kasper Laudrup
On 19/06/2021 23.59, Vrushang Desai wrote: > Hi guys, > *I'm trying to bypass youtube captcha & download email of the channel > owner.* > You can't bypass a captcha programmatically, that's the whole point of a captcha. > I would really like to know how can on

Re: PLS HELP!! - SCRAPE YOUTUBE CHANNEL EMAIL

2021-06-20 Thread Luciano Martins
his message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid

PLS HELP!! - SCRAPE YOUTUBE CHANNEL EMAIL

2021-06-19 Thread Vrushang Desai
Hi Guys , Anyone knows how to scrape Youtube Channels Emails? With Django/Python? If yes, Pls reply! Thanks. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an

🚨[URGENT] - 😥 Scrape Youtube Channel Email | Bypass Captcha 👀

2021-06-19 Thread Vrushang Desai
Hi guys, *I'm trying to bypass youtube captcha & download email of the channel owner.* I would really like to know how can one actually solve it? As I'm facing issues with youtube, *Where captcha disappears (Even if email can be scraped from different id).* *Any Help or API wo

Re: CUSTOM AUTH WITH CELERY WORKER FOR SENDING EMAIL

2021-06-18 Thread Kuassi Israel
ggestions for me or any articles for that i'm >>> glad to receive them. >>> >> -- >> You received this message because you are subscribed to the Google Groups >> "Django users" group. >> To unsubscribe from this group and stop receiving emails from i

Re: CUSTOM AUTH WITH CELERY WORKER FOR SENDING EMAIL

2021-06-18 Thread Kuassi Israel
e have suggestions for me or any articles for that i'm >> glad to receive them. >> > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send

Re: CUSTOM AUTH WITH CELERY WORKER FOR SENDING EMAIL

2021-06-16 Thread Nikeet NA
because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-user

CUSTOM AUTH WITH CELERY WORKER FOR SENDING EMAIL

2021-06-16 Thread Kuassi Israel
for that i'm glad to receive them. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discus

  1   2   3   4   5   6   7   8   9   10   >