11 lines
443 B
Python
11 lines
443 B
Python
"""
|
|
Email service module for VPN Access Server.
|
|
|
|
Provides functionality for sending various types of email notifications
|
|
including credential notifications, user guides with attachments, and log files.
|
|
"""
|
|
|
|
from .email_service import EmailService, send_credential_notification, send_user_guide, send_log_files, send_vpn_config
|
|
|
|
__all__ = ['EmailService', 'send_credential_notification', 'send_user_guide', 'send_log_files', 'send_vpn_config']
|