forked from demo/example
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
371 B
13 lines
371 B
package com.fr.plugin.core; |
|
|
|
import com.fr.stable.fun.impl.AbstractEmailProcessor; |
|
|
|
import java.util.HashMap; |
|
import java.util.Map; |
|
|
|
public class EmailProcessorImpl extends AbstractEmailProcessor { |
|
@Override |
|
public Map<String, Object> loadMailProperties(String s, String s1, String s2, String s3, String s4) { |
|
return new HashMap<String, Object>(); |
|
} |
|
} |