# diamond_email **Repository Path**: external_data/diamond_email ## Basic Information - **Project Name**: diamond_email - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-10-07 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Content: ## how to install? ```bash pip install git+ssh://git@gitee.com:external_data/diamond_email.git --upgrade``` ``` ## how to start to use? ```python from diamond_email import SendEmail email_utils = SendEmail() title = '通知邮件-请忽略' content = 'xxxx 数据抓取正常' sender = "xxxx@163.com" receivers = ['xxx@xxx.com'] email_utils.sendEmail(title,content,sender,receivers) ```