spring-config-mail.xml
699 Bytes
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
<bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl"
scope="singleton">
<property name="host" value="smtp.exmail.qq.com" />
<property name="defaultEncoding" value="utf-8" />
<property name="username" value="automan@yoho.cn" />
<property name="password" value="8AE83e639d6b65f7" />
</bean>
</beans>