我有一个模型预订,可在创建时向用户发送电子邮件。
出于测试目的,我想不时地用数百Reservations
填充数据库。
它可以生成数千封电子邮件,因此我希望关闭电子邮件发送,或者尽可能动态更改电子邮件后端。
我无法批量创建,因为我需要为每个save
模型执行Reservation
方法。
我想到的唯一一件事就是暂时改变settings.py
,但也许有更好的方法(我可能忘了更改设置)。
def create_random_reservations(count=10, user='futilestudio'):
users = User.objects.all()
airports = Location.objects.filter(is_airport=True)
cities = Location.objects.filter(is_airport=False)
for n in range(count / 2):
dt = datetime(year=2017, month=9, day=random.choice(range(15, 20)), hour=random.choice(range(12, 22)),
minute=random.choice(range(60)))
r = Reservation.objects.create(customer_first_name=get_random_string(10),
customer_last_name=get_random_string(10), flight_number=get_random_string(5),
destination_from=random.choice(airports), destination_to=random.choice(cities),
date_arrival=dt.date(), time_arrival=dt.time(), customer=random.choice(users))
r.confirm(save=True)
答案 0 :(得分:1)
您应该至少有两个不同的设置文件 - 一个用于生产,一个用于开发。只需为您的开发环境将开发设置EMAIL_BACKEND设置为something that does not effectively send mails。