Dart
Dart
GMail SMTP port 587 with "less secure" Password Authentication
See more SMTP Examples
Send email using GMail's SMTP server on port 587 (SSL via STARTTLS).Chilkat Dart Downloads
import 'package:chilkat/chilkat.dart';
void main() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
final mailman = CkMailMan();
// Use the GMail SMTP server
// This example assumes your GMail account allows for "less secure apps" to use
// SMTP username/password authentication.
// For OAuth2 authentication, see GMail SMTP with OAuth2 Authentication
mailman.smtpHost = 'smtp.gmail.com';
mailman.smtpPort = 587;
mailman.startTLS = true;
// Set the SMTP login/password.
mailman.smtpUsername = 'chilkat.support';
mailman.smtpPassword = 'myPassword';
// Create a new email object
final email = CkEmail();
email.subject = 'This is a test';
email.body = 'This is a test';
email.from = 'Chilkat Support <chilkat.support@gmail.com>';
email.addTo('Chilkat', 'support@chilkatsoft.com');
try {
mailman.sendEmail(email);
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
print('Email sent.');
}