29 lines
		
	
	
		
			518 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			518 B
		
	
	
	
		
			C#
		
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.ComponentModel;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace IRaCIS.Core.Domain.Share.Common
 | |
| {
 | |
|   
 | |
| 
 | |
|     public enum EmailStoreSendMode
 | |
|     {
 | |
|         //不存储本地 发送
 | |
|         NotStoreLocalSend = 0,
 | |
| 
 | |
|         //存储本地发送
 | |
|         StoreLocalSend = 1,
 | |
| 
 | |
|         //存储本地不发送
 | |
|          OnlyStoreLocalNotSentEmail = 2,
 | |
| 
 | |
|         //不存储本地 发送
 | |
|         NotStoreLocalOnlySentEmail = 3,
 | |
| 
 | |
|     }
 | |
| 
 | |
| }
 |