Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. To Send a email in HTML format using QTCPSocket
QtWS25 Last Chance

To Send a email in HTML format using QTCPSocket

Scheduled Pinned Locked Moved General and Desktop
3 Posts 3 Posters 1.5k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    ATHEES
    wrote on last edited by
    #1

    i am using qt4
    i had seen the example for SMTP using that i had send a Plain text
    now i need to send the HTML format mail
    here i got some problem ...........
    i can send a HTML file when the Header is not set(header means To address , from address , subject)
    only the content
    when i send both Header and Content
    it takes the content as Plain text
    so plz give me some tips
    my coding is below contain the body and header

    ////////////////////////
    Smtp::Smtp( const QString &from, const QString &to, const QString &subject , const QString &body ,const QString &address,int port)
    {
    socket = new QTcpSocket(this);
    connect( socket, SIGNAL(readyRead()), this, SLOT( readyRead() ) );
    connect( socket, SIGNAL( connected()), this, SLOT( connected() ) );
    connect(socket, SIGNAL(disconnected()), this,SLOT(disconnected()));

    message = "To: " + to + "\n";
    message.append("From: " + from + "\n");
    message.append("Subject: " + subject + "\n");

    //Let's intitiate multipart MIME with cutting boundary "frontier"
    message.append("MIME-Version: 1.0\n");
    message.append("Content-Type: multipart/mixed; boundary=frontier\n\n");

    message.append( "--frontier\n" );

    message.append( "Content-Type: text/html\n\n" ); //Uncomment this for HTML formating, coment the line below

    message.append("body\n");
    message.append("\n\n");
    message.append( "--frontier--\n" );
    message.replace( QString::fromLatin1( "\n" ), QString::fromLatin1( "\r\n" ) );
    message.replace( QString::fromLatin1( "\r\n.\r\n" ),QString::fromLatin1( "\r\n..\r\n" ) );
    this->from = from;
    rcpt = to;
    state = Init;
    socket->connectToHost( address,port);//"172.17.72.36", 25);
    t = new QTextStream( socket );
    if(socket->waitForConnected ( 30000 ))
    {qDebug("connected"); }

    }

    ///////////////
    while execute it
    i receive the mail only in Plain text
    else
    if i remove the header like to , from , subject
    i can receive the Html format

    thanks in advance

    1 Reply Last reply
    0
    • L Offline
      L Offline
      leon.anavi
      wrote on last edited by
      #2

      This thread is duplicated with "To send HTML format Mail using QTCPSocket":http://qt-project.org/forums/viewthread/32145/ Someone should close this or the other thread.

      http://anavi.org/

      1 Reply Last reply
      0
      • K Offline
        K Offline
        koahnig
        wrote on last edited by
        #3

        Closed, since duplicated

        Vote the answer(s) that helped you to solve your issue(s)

        1 Reply Last reply
        0

        • Login

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups
        • Search
        • Get Qt Extensions
        • Unsolved