Results of 1 - 10 of about 58 for send (0.030 sec.)
- メールを送信する — Django 4.0.6 ドキュメント 14622
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
メールを送信する ¶ Although Python provides a mail sending interface via the smtplib module, Django provid ...
ppers over it. These wrappers are provided to make sending email extra quick, to help test email sending d ...
次の 2 文を書くことで、 from django.core.mail import send_mail send_mail ( 'Subject here' , 'Here is the mes ...
ットは、 DEFAULT_CHARSET 設定の値にセットされます。 send_mail() ¶ send_mail ( subject , message , from_emai ...
-
https://man.plustar.jp/django/topics/email.html
- [similar]
- Signals — Django 4.0.6 ドキュメント 12807
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
he framework. In a nutshell, signals allow certain senders to notify a set of receivers that some action h ...
xplanation of each signal. You can also define and send your own custom signals ; see below. Listening to ...
they were registered. Signal. connect ( receiver , sender = None , weak = True , dispatch_uid = None ) [ソ ...
gnal. See Receiver functions for more information. sender -- Specifies a particular sender to receive sign ...
-
https://man.plustar.jp/django/topics/signals.html
- [similar]
- django.core.mail — Django 4.0.6 ドキュメント 10933
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
s up django.core.mail のソースコード """ Tools for sending email. """ from django.conf import settings # I ...
"forbid_multi_line_headers" , "get_connection" , "send_mail" , "send_mass_mail" , "mail_admins" , "mail_m ...
tly = fail_silently , ** kwds ) [ドキュメント] def send_mail ( subject , message , from_email , recipient_ ...
ne , html_message = None , ): """ Easy wrapper for sending a single message to a recipient list. All membe ...
-
https://man.plustar.jp/django/_modules/django/core/mail.html
- [similar]
- ミドルウェア — Django 4.0.6 ドキュメント 10333
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
the middleware. class BrokenLinkEmailsMiddleware ¶ Sends broken link notification emails to MANAGERS (see ...
licy ¶ Browsers use the Referer header as a way to send information to a site about how users got there. W ...
hen a user clicks a link, the browser will send the full URL of the linking page as the referrer. ...
ability to accept hints about whether they should send the HTTP Referer header when a user clicks a link; ...
-
https://man.plustar.jp/django/ref/middleware.html
- [similar]
- django.dispatch.dispatcher — Django 4.0.6 ドキュメント 9367
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
f use_caching is defined, then for each # distinct sender we cache the receivers that sender has in # 'sen ...
ct() or # .disconnect() is called and populated on send(). self . sender_receivers_cache = weakref . WeakK ...
lse [ドキュメント] def connect ( self , receiver , sender = None , weak = True , dispatch_uid = None ): "" ...
" Connect receiver to sender for signal. Arguments: receiver A function or an ...
-
https://man.plustar.jp/django/_modules/django/dispatch/dispatcher.html
- [similar]
- django.core.mail.message — Django 4.0.6 ドキュメント 7669
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ess data (RFC #5322) ADDRESS_HEADERS = { "from" , "sender" , "reply-to" , "to" , "cc" , "bcc" , "resent-fr ...
om" , "resent-sender" , "resent-to" , "resent-cc" , "resent-bcc" , } ...
elf . to + self . cc + self . bcc ) if email ] def send ( self , fail_silently = False ): """Send the emai ...
ting the network connection if there's nobody to # send to. return 0 return self . get_connection ( fail_s ...
-
https://man.plustar.jp/django/_modules/django/core/mail/message.html
- [similar]
- Django 1.2 リリースノート — Django 4.0.6 ドキュメント 7611
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ble username requirements . Customization of email sending via email backends . New "smart" if template ta ...
クエンド ¶ You can now configure the way that Django sends email . Instead of using SMTP to send all email, ...
you can now choose a configurable email backend to send messages. If your hosting provider uses a sandbox ...
or some other non-SMTP technique for sending mail, you can now construct an email backend th ...
-
https://man.plustar.jp/django/releases/1.2.html
- [similar]
- Generic editing ビュー — Django 4.0.6 ドキュメント 7552
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
orms . CharField ( widget = forms . Textarea ) def send_email ( self ): # send email using the self.cleane ...
POSTed. # It should return an HttpResponse. form . send_email () return super () . form_valid ( form ) 例 ...
} {{ form.as_p }} < input type = "submit" value = "Send message" > </ form > class django.views.generic.ed ...
-
https://man.plustar.jp/django/ref/class-based-views/generic-editing.html
- [similar]
- Django のセキュリティポリシー — Django 4.0.6 ドキュメント 7494
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
in Django which has security implications, please send a description of the issue via email to security@d ...
be taken, you may receive further followup emails. Sending encrypted reports If you want to send an encryp ...
pproximately one week before public disclosure, we send two notifications: First, we notify django-announc ...
-
https://man.plustar.jp/django/internals/security.html
- [similar]
- How to configure and use logging — Django 4.0.6 ドキュメント 7435
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
s readily extended. Make a basic logging call ¶ To send a log message from within your code, you place a l ...
el. And then in a function, for example in a view, send a record to the logger: def some_view ( request ): ...
DEBUG and higher. Configure a logger mapping ¶ To send records to this handler, configure a logger mappin ...
-
https://man.plustar.jp/django/howto/logging.html
- [similar]