A
A
Alexander Konovalov2016-11-22 19:49:29
Email
Alexander Konovalov, 2016-11-22 19:49:29

What are the mass mailing servers?

Hello! What are the services that provide smtp servers or something like that for mass email - advertising mailings with the ability to change ip, etc.?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
D
Dim Boy, 2016-11-22
@twix007

I use mailjet.com

D
Dmitry, 2017-03-04
@ipatov_dn

In general, I solved this issue with an image jump like this:

import requests
from bs4 import BeautifulSoup

url='http://www.yarregion.ru/'

r=requests.get(url+'depts/dcul/default.aspx').text

dcul=BeautifulSoup(r)

img_news=dcul.find('div',{'id': 'WebPartWPQ3'}).find('img').get('src')

file=open('1.jpg', 'wb')
p=requests.get(url+img_news)
file.write(p.content)
file.close()

yes not ideal but
I'm not a magician, I'm just learning

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question