aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test1.c
blob: 9a483d0ca919aa29ffc0f8809c0ca9d8b535767b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#include "camel-mime-message.h"
#include "stdio.h"
#include <bonobo/gnome-stream.h>

void
main (int argc, char**argv)
{
    CamelMimeMessage *message;
    FILE *output_file;

    gtk_init (&argc, &argv);
    message = camel_mime_message_new_with_session( (CamelSession *)NULL);
    camel_mime_part_set_description (CAMEL_MIME_PART (message), g_string_new ("a test"));
    camel_mime_part_add_header (CAMEL_MIME_PART (message), g_string_new ("X-test1"), g_string_new ("the value of a test"));
    camel_mime_part_add_header (CAMEL_MIME_PART (message), g_string_new ("X-test2"), g_string_new ("the value of another test"));
    /*camel_mime_part_add_content_language (CAMEL_MIME_PART (message), g_string_new ("es-ca"));*/

    camel_mime_message_set_received_date (message, g_string_new ("Thu, 20 May 1999, 10:39:14 +0200"));
    camel_mime_message_set_subject (message, g_string_new ("A test message"));
    camel_mime_message_set_reply_to (message, g_string_new ("toto@toto.com"));
    camel_mime_message_set_from (message, g_string_new ("Bertrand.Guiheneuf@inria.fr"));

    camel_mime_message_add_recipient (message, g_string_new (RECIPIENT_TYPE_TO), g_string_new ("franck.dechamps@alseve.fr"));
    camel_mime_message_add_recipient (message, g_string_new (RECIPIENT_TYPE_TO), g_string_new ("mc@alseve.fr"));
    camel_mime_message_add_recipient (message, g_string_new (RECIPIENT_TYPE_TO), g_string_new ("richard.lengagne@inria.fr"));
    camel_mime_message_add_recipient (message, g_string_new (RECIPIENT_TYPE_CC), g_string_new ("Francois.fleuret@inria.fr"));
    camel_mime_message_add_recipient (message, g_string_new (RECIPIENT_TYPE_CC), g_string_new ("maury@justmagic.com"));
    camel_mime_message_add_recipient (message, g_string_new (RECIPIENT_TYPE_BCC), g_string_new ("guiheneu@aful.org"));

    output_file = fopen ("mail.test", "w");
    if (!output_file) {
        perror("could not open output file");
        exit(2);
    }
    camel_data_wrapper_write_to_file (CAMEL_DATA_WRAPPER (message), output_file);
    fclose (output_file);
    
                       
    
    
}