mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Added email notification option to receive all own messages (#20179)
Sometimes users want to receive email notifications of messages they create or reply to, Added an option to personal preferences to allow users to choose Closes #20149
This commit is contained in:
		@@ -156,7 +156,8 @@ func EmailPost(ctx *context.Context) {
 | 
			
		||||
		preference := ctx.FormString("preference")
 | 
			
		||||
		if !(preference == user_model.EmailNotificationsEnabled ||
 | 
			
		||||
			preference == user_model.EmailNotificationsOnMention ||
 | 
			
		||||
			preference == user_model.EmailNotificationsDisabled) {
 | 
			
		||||
			preference == user_model.EmailNotificationsDisabled ||
 | 
			
		||||
			preference == user_model.EmailNotificationsAndYourOwn) {
 | 
			
		||||
			log.Error("Email notifications preference change returned unrecognized option %s: %s", preference, ctx.Doer.Name)
 | 
			
		||||
			ctx.ServerError("SetEmailPreference", errors.New("option unrecognized"))
 | 
			
		||||
			return
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user