如何通过cpanel邮件服务器

时间:2017-05-20 06:24:20

标签: android email server

  

我想通过电子邮件向我的客户发送密码?   我的服务器是linux服务器(Cpanel)。   我知道如何在android和我的sql(php)之间建立关系。   但我不知道如何制作邮件服务器并将php web服务连接到它?

1 个答案:

答案 0 :(得分:0)

  1. 我们可以使用PHP Mailer使用PHP发送和发送电子邮件,您可以与PHP Web服务集成。

  2. 我们可以使用发送网格库从Android手机发送电子邮件

    sendgrid

    示例:

    SendGrid sendgrid = new SendGrid(" SENDGRID USERNAME"," SENDGRID_PASSWORD");

    SendGrid.Email email = new SendGrid.Email(); email.addTo(" example@example.com"); email.setFrom(" other@example.com"); email.setSubject(" Hello World"); email.setText("我的第一封带有SendGrid Java的电子邮件!");

    尝试{   SendGrid.Response response = sendgrid.send(email);   的System.out.println(response.getMessage()); } catch(SendGridException e){   通信System.err.println(E); }