delete entry in database if error during mail sending occured
This commit is contained in:
		
							parent
							
								
									06a3d727ca
								
							
						
					
					
						commit
						1c4d1b2e2e
					
				| 
						 | 
					@ -192,10 +192,13 @@ class ExternView(CookieWizardView):
 | 
				
			||||||
                IF_EMAIL,
 | 
					                IF_EMAIL,
 | 
				
			||||||
                [IF_EMAIL],
 | 
					                [IF_EMAIL],
 | 
				
			||||||
                fail_silently=False)
 | 
					                fail_silently=False)
 | 
				
			||||||
 | 
					            # raise SMTPException("testing pupose only")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        except BadHeaderError:
 | 
					        except BadHeaderError:
 | 
				
			||||||
 | 
					            modell.delete()
 | 
				
			||||||
            return HttpResponse('Invalid header found. Data not saved!')
 | 
					            return HttpResponse('Invalid header found. Data not saved!')
 | 
				
			||||||
        except SMTPException:
 | 
					        except SMTPException:
 | 
				
			||||||
 | 
					            modell.delete()
 | 
				
			||||||
            return HttpResponse('Error in sending mails (propably wrong adress?). Data not saved!')
 | 
					            return HttpResponse('Error in sending mails (propably wrong adress?). Data not saved!')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue