当前位置: 首页>>代码示例>>Java>>正文


Java Session.getInstance方法代码示例

本文整理汇总了Java中javax.mail.Session.getInstance方法的典型用法代码示例。如果您正苦于以下问题:Java Session.getInstance方法的具体用法?Java Session.getInstance怎么用?Java Session.getInstance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在javax.mail.Session的用法示例。


在下文中一共展示了Session.getInstance方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: sendMail

import javax.mail.Session; //导入方法依赖的package包/类
public static void sendMail(String host, int port, String username, String password, String recipients,
		String subject, String content, String from) throws AddressException, MessagingException {
	
	Properties props = new Properties();
	props.put("mail.smtp.auth", "true");
	props.put("mail.smtp.starttls.enable", "true");
	props.put("mail.smtp.host", host);
	props.put("mail.smtp.port", port);

	Session session = Session.getInstance(props, new javax.mail.Authenticator() {
		protected PasswordAuthentication getPasswordAuthentication() {
			return new PasswordAuthentication(username, password);
		}
	});

	Message message = new MimeMessage(session);
	message.setFrom(new InternetAddress(from));
	message.setRecipients(Message.RecipientType.TO, InternetAddress.parse(recipients));
	message.setSubject(subject);
	message.setText(content);

	Transport.send(message);
}
 
开发者ID:bndynet,项目名称:web-framework-for-java,代码行数:24,代码来源:MailHelper.java

示例2: sendMsg

import javax.mail.Session; //导入方法依赖的package包/类
public boolean sendMsg(String recipient, String subject, String content)
		throws MessagingException {
	// Create a mail object
	Session session = Session.getInstance(props, new Authenticator() {
		// Set the account information session,transport will send mail
		@Override
		protected PasswordAuthentication getPasswordAuthentication() {
			return new PasswordAuthentication(Constants.MAIL_USERNAME, Constants.MAIL_PASSWORD);
		}
	});
	session.setDebug(true);
	Message msg = new MimeMessage(session);
	try {
		msg.setSubject(subject);			//Set the mail subject
		msg.setContent(content,"text/html;charset=utf-8");
		msg.setFrom(new InternetAddress(Constants.MAIL_USERNAME));			//Set the sender
		msg.setRecipient(RecipientType.TO, new InternetAddress(recipient));	//Set the recipient
		Transport.send(msg);
		return true;
	} catch (Exception ex) {
		ex.printStackTrace();
		System.out.println(ex.getMessage());
		return false;
	}

}
 
开发者ID:ICT-BDA,项目名称:EasyML,代码行数:27,代码来源:JavaMail.java

示例3: sendAttachMail

import javax.mail.Session; //导入方法依赖的package包/类
public boolean sendAttachMail(MailSenderInfo mailInfo) {
    MyAuthenticator authenticator = null;
    Properties pro = mailInfo.getProperties();
    if (mailInfo.isValidate()) {
        authenticator = new MyAuthenticator(mailInfo.getUserName(), mailInfo.getPassword());
    }
    try {
        Message mailMessage = new MimeMessage(Session.getInstance(pro, authenticator));
        mailMessage.setFrom(new InternetAddress(mailInfo.getFromAddress()));
        mailMessage.setRecipient(Message.RecipientType.TO, new InternetAddress(mailInfo.getToAddress()));
        mailMessage.setSubject(mailInfo.getSubject());
        mailMessage.setSentDate(new Date());
        Multipart multi = new MimeMultipart();
        BodyPart textBodyPart = new MimeBodyPart();
        textBodyPart.setContent(mailInfo.getContent(), "text/html; charset=utf-8");
        multi.addBodyPart(textBodyPart);
        for (String path : mailInfo.getAttachFileNames()) {
            DataSource fds = new FileDataSource(path);
            BodyPart fileBodyPart = new MimeBodyPart();
            fileBodyPart.setDataHandler(new DataHandler(fds));
            fileBodyPart.setFileName(path.substring(path.lastIndexOf("/") + 1));
            multi.addBodyPart(fileBodyPart);
        }
        mailMessage.setContent(multi);
        mailMessage.saveChanges();
        Transport.send(mailMessage);
        return true;
    } catch (MessagingException ex) {
        ex.printStackTrace();
        return false;
    }
}
 
开发者ID:JamesLiAndroid,项目名称:AndroidKillerService,代码行数:33,代码来源:SimpleMailSender.java

示例4: sendMail

import javax.mail.Session; //导入方法依赖的package包/类
private void sendMail(String subject, String body, MailSettings settings) throws MessagingException {

        Properties props = new Properties();
        props.put("mail.transport.protocol", "smtp");
        props.put("mail.smtp.host", settings.getSmtpServer());
        props.put("mail.smtp.port", settings.getSmtpPort() + "");

        if (settings.getMode() == MailSettings.Mode.SSL) {
            props.put("mail.smtp.socketFactory.port", settings.getSmtpPort() + "");
            props.put("mail.smtp.socketFactory.class",
                    "javax.net.ssl.SSLSocketFactory");
        } else if (settings.getMode() == MailSettings.Mode.TLS) {
            props.put("mail.smtp.starttls.enable", "true");
        }

        props.put("mail.smtp.auth", settings.isUseAuth() + "");

        Session session;
        if (settings.isUseAuth()) {
            session = Session.getInstance(props,
                    new javax.mail.Authenticator() {
                @Override
                protected PasswordAuthentication getPasswordAuthentication() {
                    return new PasswordAuthentication(settings.getUser(), settings.getPass());
                }
            });
        } else {
            session = Session.getInstance(props);
        }

        Message message = new MimeMessage(session);
        message.setFrom(new InternetAddress(settings.getFrom()));
        message.setRecipients(Message.RecipientType.TO,
                InternetAddress.parse(settings.getTo()));
        message.setSubject(subject);
        message.setText(body);

        Transport.send(message);

    }
 
开发者ID:dainesch,项目名称:HueSense,代码行数:41,代码来源:MailService.java

示例5: testSetSession

import javax.mail.Session; //导入方法依赖的package包/类
@Test
public void testSetSession()
{
	smsTestClient.initializeSMSClient("Memoranda", "8005551212", "T-Mobile");
	Session testSession;
	props = new Properties();
	props.put("mail.smtp.auth", "true");
	props.put("mail.smtp.starttls.enable", "true");
	props.put("mail.smtp.host", "outlook.office365.com");
	props.put("mail.smtp.port", "587");
	testSession = Session.getInstance(props, new javax.mail.Authenticator()
	{
		protected PasswordAuthentication getPasswordAuthentication() 
		{
			return new PasswordAuthentication(smsTestClient.getUsername(), smsTestClient.getPassword());
		}
});
	smsTestClient.setSession(testSession);
}
 
开发者ID:ser316asu,项目名称:Wilmersdorf_SER316,代码行数:20,代码来源:SMS_Test.java

示例6: ImapStorage

import javax.mail.Session; //导入方法依赖的package包/类
/**
 * Instantiate the IMAP storage
 *
 * @param imapServerHost    the IMAP server host name
 */
public ImapStorage( String imapServerHost ) {

    this.imapServerHost = imapServerHost;

    // set the session
    Properties props = new Properties();
    props.setProperty("mail.smtp.host", this.imapServerHost);
    props.setProperty("mail.imap.partialfetch", "false");
    props.setProperty("mail.smtp.connectiontimeout", String.valueOf(CONNECTION_TIMEOUT));
    props.setProperty("mail.smtp.timeout", String.valueOf(TIMEOUT));

    // add custom mail properties from RBVConfigurator
    Map<String, String> customMailProperties = RbvConfigurator.getInstance().getProperties("mail.");
    for (Entry<String, String> mailProperty : customMailProperties.entrySet()) {
        props.setProperty(mailProperty.getKey(), mailProperty.getValue());
    }

    this.session = Session.getInstance(props);
    if (log.isTraceEnabled()) {
        session.setDebug(true);
    }

    log.debug("IMAP session to host '" + imapServerHost + "' initialized");
}
 
开发者ID:Axway,项目名称:ats-framework,代码行数:30,代码来源:ImapStorage.java

示例7: initSession

import javax.mail.Session; //导入方法依赖的package包/类
/**
 * Initialize the SMTP session
 *
 * @throws ActionException
 */
private void initSession() throws ActionException {

    // initialize the mail session with the current properties
    session = Session.getInstance(mailProperties);
    // user can get more debug info with the session's debug mode
    session.setDebug(configurator.getMailSessionDebugMode());

    // initialize the SMPT transport
    try {
        transport = session.getTransport("smtp");
    } catch (NoSuchProviderException e) {
        throw new ActionException(e);
    }
}
 
开发者ID:Axway,项目名称:ats-framework,代码行数:20,代码来源:MailSender.java

示例8: getSession

import javax.mail.Session; //导入方法依赖的package包/类
/**
 * Create session based on the mail properties.
 *
 * @return session session from mail properties
 */
private Session getSession() {
	final Properties props = new Properties();

	props.setProperty("mail.smtp.host", mailProperties.getString("mail.smtp.host"));

	String auth = "true";
	if (mailProperties.containsKey("mail.smtp.auth")) {
		auth = mailProperties.getString("mail.smtp.auth");
	}
	props.setProperty("mail.smtp.auth", auth);

	props.setProperty("mail.smtp.port", mailProperties.getString("mail.smtp.port"));

	String starttls = "true";
	if (mailProperties.containsKey("mail.smtp.starttls.enable")) {
		starttls = mailProperties.getString("mail.smtp.starttls.enable");
	}
	props.put("mail.smtp.starttls.enable", starttls);

	props.put("mail.debug", mailProperties.getString("mail.debug"));
	props.put("mail.smtp.socketFactory.class", mailProperties.getString("mail.smtp.socketFactory.class"));
	props.put("mail.smtp.socketFactory.fallback", mailProperties.getString("mail.smtp.socketFactory.fallback"));
	props.put("mail.smtp.socketFactory.port", mailProperties.getString("mail.smtp.socketFactory.port"));

	return Session.getInstance(props, new SMTPAuthenticator());
}
 
开发者ID:daima,项目名称:solo-spring,代码行数:32,代码来源:MailService.java

示例9: OkMailClient

import javax.mail.Session; //导入方法依赖的package包/类
private OkMailClient(Builder builder) {
    this.host = builder.host;
    this.port = builder.port;
    this.protocol = builder.protocol;
    this.username = builder.username;
    this.password = builder.password;
    this.auth = builder.auth;
    this.ssl = builder.ssl;
    this.debug = builder.debug;
    this.mailer = builder.mailer;
    this.session = Session.getInstance(getConfig(), new DefaultAuthenticator(this.username, this.password));
    if (debug) {
        this.session.setDebug(true);
    }
}
 
开发者ID:TFdream,项目名称:okmail,代码行数:16,代码来源:OkMailClient.java

示例10: connect

import javax.mail.Session; //导入方法依赖的package包/类
public static Boolean connect(Properties props)
        throws MessagingException, IOException {
    Session session = Session.getInstance(props, new javax.mail.Authenticator() {
        @Override
        protected PasswordAuthentication getPasswordAuthentication() {
            return new PasswordAuthentication(
                    props.getProperty("username"),
                    props.getProperty("password"));
        }
    });
    Transport transport = session.getTransport("smtp");
    transport.connect();
    transport.close();
    return true;
}
 
开发者ID:CognizantQAHub,项目名称:Cognizant-Intelligent-Test-Scripter,代码行数:16,代码来源:Mailer.java

示例11: sendout

import javax.mail.Session; //导入方法依赖的package包/类
/**
 * 发送邮件
 * 
 * @param name String
 * @param pass String
 */
public boolean sendout() {
	try {
		mimeMsg.setContent(mp);
		mimeMsg.saveChanges();

		logger.info(Resources.getMessage("EMAIL.SENDING"));
		Session mailSession = Session.getInstance(props, new Authenticator() {
			protected PasswordAuthentication getPasswordAuthentication() {
				if (userkey == null || "".equals(userkey.trim())) {
					return null;
				}
				return new PasswordAuthentication(username, userkey);
			}
		});
		Transport transport = mailSession.getTransport("smtp");
		transport.connect((String) props.get("mail.smtp.host"), username, password);
		// 设置发送日期
		mimeMsg.setSentDate(new Date());
		// 发送
		transport.sendMessage(mimeMsg, mimeMsg.getRecipients(Message.RecipientType.TO));
		if (mimeMsg.getRecipients(Message.RecipientType.CC) != null) {
			transport.sendMessage(mimeMsg, mimeMsg.getRecipients(Message.RecipientType.CC));
		}
		logger.info(Resources.getMessage("EMAIL.SEND_SUCC"));
		transport.close();
		return true;
	} catch (Exception e) {
		logger.error(Resources.getMessage("EMAIL.SEND_ERR"), e);
		return false;
	}
}
 
开发者ID:tb544731152,项目名称:iBase4J,代码行数:38,代码来源:EmailSender.java

示例12: getEmailSession

import javax.mail.Session; //导入方法依赖的package包/类
/**
 * Retrieves a email session based on the passed properties.
 * 
 * @param unProperties
 *            define the settings of the session.
 * @return a email session for the passed properties.
 */
private Session getEmailSession(Properties unProperties) {
    String mailServer = unProperties.getProperty(HandlerUtils.MAIL_SERVER);
    String returnAddress = unProperties
            .getProperty(HandlerUtils.MAIL_RESPONSE_ADDRESS);

    HandlerUtils.checkNotNull(mailServer, HandlerUtils.MAIL_SERVER);
    HandlerUtils.checkNotNull(returnAddress,
            HandlerUtils.MAIL_RESPONSE_ADDRESS);

    String mailPort = unProperties.getProperty(HandlerUtils.MAIL_PORT);
    String username = unProperties.getProperty(HandlerUtils.MAIL_USER);
    String password = unProperties.getProperty(HandlerUtils.MAIL_USER_PWD);

    Properties emailProperties = new Properties();
    emailProperties.setProperty("mail.smtp.host", mailServer);
    emailProperties.put("mail.smtp.from", returnAddress);

    if ((mailPort != null) && mailPort.length() > 0) {
        emailProperties.put("mail.smtp.port", mailPort);
    }

    SMTPAuthenticator authenticator;

    if (username != null && username.length() > 0 && password != null) {
        authenticator = new SMTPAuthenticator(username, password);
        emailProperties.put("mail.smtp.auth", "true");
    } else {
        authenticator = null;
    }

    return Session.getInstance(emailProperties, authenticator);
}
 
开发者ID:servicecatalog,项目名称:oscm,代码行数:40,代码来源:UserNotificationHandler.java

示例13: MimePackage

import javax.mail.Session; //导入方法依赖的package包/类
/**
 * Create an empty MIME package - use the add* methods to manipulate it
 *
 * @throws PackageException
 */
@PublicAtsApi
public MimePackage() throws PackageException {

    this.message = new MimeMessage(Session.getInstance(new Properties()));
    try {
        this.message.setContent(new MimeMultipart());
    } catch (MessagingException me) {
        throw new PackageException(me);
    }
    this.subjectCharset = null;
}
 
开发者ID:Axway,项目名称:ats-framework,代码行数:17,代码来源:MimePackage.java

示例14: emailPassword

import javax.mail.Session; //导入方法依赖的package包/类
private boolean emailPassword(String password, String username, String email) {
    /* Default to protocol smtp when SmtpEncryption is set to "None" */
    String prot = "smtp";

    if (settingsService.getSmtpServer() == null || settingsService.getSmtpServer().isEmpty()) {
        LOG.warn("Can not send email; no Smtp server configured.");
        return false;
    }

    Properties props = new Properties();
    if (settingsService.getSmtpEncryption().equals("SSL/TLS")) {
        prot = "smtps";
        props.put("mail." + prot + ".ssl.enable", "true");
    } else if (settingsService.getSmtpEncryption().equals("STARTTLS")) {
        prot = "smtp";
        props.put("mail." + prot + ".starttls.enable", "true");
    }
    props.put("mail." + prot + ".host", settingsService.getSmtpServer());
    props.put("mail." + prot + ".port", settingsService.getSmtpPort());
    /* use authentication when SmtpUser is configured */
    if (settingsService.getSmtpUser() != null && !settingsService.getSmtpUser().isEmpty()) {
        props.put("mail." + prot + ".auth", "true");
    }

    Session session = Session.getInstance(props, null);

    try {
        Message message = new MimeMessage(session);
        message.setFrom(new InternetAddress(settingsService.getSmtpFrom()));
        message.setRecipients(Message.RecipientType.TO, InternetAddress.parse(email));
        message.setSubject("Airsonic Password");
        message.setText("Hi there!\n\n" +
                "You have requested to reset your Airsonic password.  Please find your new login details below.\n\n" +
                "Username: " + username + "\n" +
                "Password: " + password + "\n\n" +
                "--\n" +
                "Your Airsonic server\n" +
                "airsonic.github.io/");
        message.setSentDate(new Date());

        Transport trans = session.getTransport(prot);
        try {
            if (props.get("mail." + prot + ".auth") != null && props.get("mail." + prot + ".auth").equals("true")) {
                trans.connect(settingsService.getSmtpServer(), settingsService.getSmtpUser(), settingsService.getSmtpPassword());
            } else {
                trans.connect();
            }
            trans.sendMessage(message, message.getAllRecipients());
        } finally {
            trans.close();
        }
        return true;

    } catch (Exception x) {
        LOG.warn("Failed to send email.", x);
        return false;
    }
}
 
开发者ID:airsonic,项目名称:airsonic,代码行数:59,代码来源:RecoverController.java

示例15: Send

import javax.mail.Session; //导入方法依赖的package包/类
/**
 * Send email using GMail SMTP server.
 *
 * @param username GMail username
 * @param password GMail password
 * @param recipientEmail TO recipient
 * @param ccEmail CC recipient. Can be empty if there is no CC recipient
 * @param title title of the message
 * @param message message to be sent
 * @throws AddressException if the email address parse failed
 * @throws MessagingException if the connection is dead or not in the connected state or if the message is not a MimeMessage
 */
private static void Send(final String username, final String password, String recipientEmail, String ccEmail, String title, String message) throws AddressException, MessagingException, EmailInesistente {
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    final String SSL_FACTORY = "javax.net.ssl.SSLSocketFactory";

    // Get a Properties object
    Properties props = System.getProperties();
    props.setProperty("mail.smtps.host", "smtp.gmail.com");
    props.setProperty("mail.smtp.socketFactory.class", SSL_FACTORY);
    props.setProperty("mail.smtp.socketFactory.fallback", "false");
    props.setProperty("mail.smtp.port", "465");
    props.setProperty("mail.smtp.socketFactory.port", "465");
    props.setProperty("mail.smtps.auth", "true");

    /*
    If set to false, the QUIT command is sent and the connection is immediately closed. If set 
    to true (the default), causes the transport to wait for the response to the QUIT command.

    ref :   http://java.sun.com/products/javamail/javadocs/com/sun/mail/smtp/package-summary.html
            http://forum.java.sun.com/thread.jspa?threadID=5205249
            smtpsend.java - demo program from javamail
    */
    props.put("mail.smtps.quitwait", "false");

    Session session = Session.getInstance(props, null);

    // -- Create a new message --
    final MimeMessage msg = new MimeMessage(session);

    // -- Set the FROM and TO fields --
    msg.setFrom(new InternetAddress(username + "@gmail.com"));
    msg.setRecipients(Message.RecipientType.TO, InternetAddress.parse(recipientEmail, false));

    if (ccEmail.length() > 0) {
        msg.setRecipients(Message.RecipientType.CC, InternetAddress.parse(ccEmail, false));
    }

    msg.setSubject(title);
    msg.setText(message, "utf-8");
    msg.setSentDate(new Date());

    SMTPTransport t = (SMTPTransport)session.getTransport("smtps");

    t.connect("smtp.gmail.com", username, password);
    try{
        t.sendMessage(msg, msg.getAllRecipients()); 
    }
    catch (SendFailedException e){
        throw new EmailInesistente();
    }
    t.close();
}
 
开发者ID:IngSW-unipv,项目名称:Progetto-A,代码行数:64,代码来源:Email.java


注:本文中的javax.mail.Session.getInstance方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。