pytracking icon indicating copy to clipboard operation
pytracking copied to clipboard

Email open and click tracking library

Results 11 pytracking issues
Sort by recently updated
recently updated
newest added

- After adding link to HTML emails python code, how do I see when and who opened the link?

We have a situation where a users email client is lowering the URL. This doesn't work with the base-64 encoded data in the URL. Is there a way/planned feature to...

SMTPlib is one of the most popular python libraries for sending emails together with mail MIME. Can you create a complete example in how to send an email and get...

Having trouble with decoding the tracking url: ``` >>> open_tracking_url = pytracking.get_open_tracking_url( ... {'ASIN': 'B07CBTMPHS'}, base_open_tracking_url="https://example.com/see", include_webhook_url=False) >>> open_tracking_url 'https://example.com/eyJtZXRhZGF0YSI6IHsiQVNJTiI6ICJCMDdDQlRNUEhTIn19' >>> tracking_result = pytracking.get_open_tracking_result(open_tracking_url, base_open_tracking_url="https://example.com/see") Traceback (most recent call last):...

hello, with using this code is it possible to fetch receptor email id and time when opened email ? if yes then can you please give me proper documentation for...

Curious if this package is able to also capture replies to emails. Have you had any experience in achieving this?

1. Google had implemented image proxy for all the images in Gmail. 2. This had disable the django app and pytracking to receive request from `GmailImageProxy` instead of the request...

``` DEFAULT_SETTINGS = { "base_open_tracking_url": "http://pixels.example.com/track/", "base_click_tracking_url": "http://clicks.example.com/track?" } ``` Given the example above, the base_open_tracking_url looks like this (correct): http://pixels.example.com/track/ The base_click_tracking_url excludes the track? portion. http://clicks.example.com/eyJ1cmwiOiAia... The base...

I'm using pytracking with Django and I stumbled upon some issue with `adapt_html` method. I would expect it to take the configuration from `PYTRACKING_CONFIGURATION`, but it is not doing that...