معرفی شرکت ها


aiohttp-sendgrid-0.0.4


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

SendGrid mail send API wrapper
ویژگی مقدار
سیستم عامل -
نام فایل aiohttp-sendgrid-0.0.4
نام aiohttp-sendgrid
نسخه کتابخانه 0.0.4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Aleksandr Kurlov
ایمیل نویسنده sasha.kurlov@yandex.com
آدرس صفحه اصلی https://github.com/kurlov/aiohttp-sendgrid
آدرس اینترنتی https://pypi.org/project/aiohttp-sendgrid/
مجوز MIT
aiohttp-sendgrid ================ .. image:: https://travis-ci.org/Kurlov/aiohttp-sendgrid.svg?branch=master :target: https://travis-ci.org/Kurlov/aiohttp-sendgrid .. image:: https://badge.fury.io/py/aiohttp-sendgrid.svg :target: https://badge.fury.io/py/aiohttp-sendgrid SendGrid mail API wrapper Installation ------------ ``pip install aiohttp_sendgrid`` Usage ----- Create an instance of API client: .. code:: python import asyncio from aiohttp_sendgrid import Sendgrid api_key = '<your_sendgrid_api_key>' mailer = Sendgrid(api_key=api_key) Important to note that if ``api_key`` is not provided then it will try to read ``SENDGRID_API_KEY`` environment variable Send email to single recipient ------------------------------- .. code:: python to = 'to@example.com' sender = 'from@example.com' subject = 'greetings' content = '<h1>Hello</h1>' send_mail = mailer.send(to, sender, subject, content) loop = asyncio.get_event_loop() loop.run_until_complete(send_mail) Both ``to`` and ``sender`` might be also a dictionary with ``email`` key, if you want to specify name for sender or recipient then add ``name`` key to the dictionary. Thus, ``to = {'email': 'to@example.com', 'name': 'Recipient'}`` is also a correct value. Send single email to multiple recipients ---------------------------------------- .. code:: python to = ['to@example.com', 'another@example'] sender = 'from@example.com' subject = 'greetings' content = '<h1>Hello</h1>' send_mail = mailer.send(to, sender, subject, content) loop = asyncio.get_event_loop() loop.run_until_complete(send_mail) ``to`` might be tuple or list of strings or dictionaries.


نیازمندی

مقدار نام
>=2.3.7 aiohttp


نحوه نصب


نصب پکیج whl aiohttp-sendgrid-0.0.4:

    pip install aiohttp-sendgrid-0.0.4.whl


نصب پکیج tar.gz aiohttp-sendgrid-0.0.4:

    pip install aiohttp-sendgrid-0.0.4.tar.gz