Java Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CUnicode C++Unicode CMFCDelphi DLLDelphi ActiveXFoxProJavaPerlPHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

Java Examples

Quick Start
Unicode
Bz2
Certificates
CSV
Email
Encryption
FTP
HTML Conversion
HTTP
IMAP
MHT
MIME
POP3
RSA
S/MIME
SFTP
Signatures
SMTP
Socket / SSL
Spider
SSH
SSH Key
SSH Tunnel
Tar
Upload
XML
XMP
Zip

More Examples...
Amazon S3
Email Object
DKIM / DomainKey
NTLM
FileAccess
RSS
Atom
String
Byte Array
Self-Extractor
Service
PPMD
Deflate
DH Key Exchange
DSA
Bzip2
LZW

 

 

 

 

 

 

 

Using GMail as your SMTP Server

 Chilkat Java Library Downloads for Windows, Linux, and MAC OS X

Java example code showing how to use GMail as your SMTP server for sending email.

// Using GMail as your SMTP Server
	
// Demonstrates how to send email using the GMail SMTP Server 
// (smtp.gmail.com)
	
import com.chilkatsoft.CkMailMan;
import com.chilkatsoft.CkEmail;

public class SmtpGmail {
	
  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[]) 
  {
  	// Instantiate a mailman object for sending.
    CkMailMan mailman = new CkMailMan();
    mailman.UnlockComponent("anything for 30-day trial");
    
    // Set your SMTP server's hostname
    mailman.put_SmtpHost("smtp.gmail.com");
    
    // GMail requires a login/password to send mail.
    mailman.put_SmtpUsername("your_email@gmail.com");
    mailman.put_SmtpPassword("your_password");
    
    // The default SMTP port is 25.  When using it, GMail requires STARTTLS.
    mailman.put_StartTLS(true);
    
    // Alternatively, you may comment-out the STARTTLS line and instead use SSL
    // on port 465 by commenting-in these 2 lines:
	//mailman.put_SmtpPort(465);
	//mailman.put_SmtpSsl(true);
	
	// If you are connected to a network that blocks outbound port 25 connections,
	// use GMail's alternative port 587.  You'll need STARTTLS, so uncomment the 
	// STARTTLS line and make sure the two lines for SMTP SSL are commented out.
	//mailman.put_SmtpPort(587);
    
    // New email object..
    CkEmail email = new CkEmail();
    email.put_Subject("Sending email using GMail SMTP");
    email.put_Body("This email was sent from the GMail SMTP Server");
    email.put_From("Chilkat Support <support@chilkatsoft.com>");
    
    // Add a few recipients
    email.AddTo("Matt","matt@chilkatsoft.com");
    email.AddTo("TagTooga","admin@tagtooga.com");
    
    boolean success = mailman.SendEmail(email);
    if (!success)
    {
    	mailman.SaveLastError("lastError.txt");	
    }
    
  }
}





 

© 2000-2013 Chilkat Software, Inc. All Rights Reserved.