Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7505899
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T22:04:42+00:00 2026-05-29T22:04:42+00:00

I would like to send an email to my gmail account everytime my simulation

  • 0

I would like to send an email to my gmail account everytime my simulation ends. I have tried searching the web and found sendEmail but it is timing-out. If anyone could point me out to a package or link that they tried I would be thankful.

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T22:04:43+00:00Added an answer on May 29, 2026 at 10:04 pm

    You could invoke your local MTA directly using popen() and feed it RFC822-compliant text.

    #include <stdio.h>
    #include <string.h>
    #include <errno.h>
    int sendmail(const char *to, const char *from, const char *subject, const char *message)
    {
        int retval = -1;
        FILE *mailpipe = popen("/usr/lib/sendmail -t", "w");
        if (mailpipe != NULL) {
            fprintf(mailpipe, "To: %s\n", to);
            fprintf(mailpipe, "From: %s\n", from);
            fprintf(mailpipe, "Subject: %s\n\n", subject);
            fwrite(message, 1, strlen(message), mailpipe);
            fwrite(".\n", 1, 2, mailpipe);
            pclose(mailpipe);
            retval = 0;
         }
         else {
             perror("Failed to invoke sendmail");
         }
         return retval;
    }
    
    main(int argc, char** argv)
    {
        if (argc == 5) {
            sendmail(argv[1], argv[2], argv[3], argv[4]);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to send an email directly from a script to a Gmail
Hello I would like to send an email with php code. I have the
I would like to quickly send email from the command line. I realize there
I would like to use Ruby Net::SMTP to send email. The routine send_message( msgstr,
I'm using sendgrid on heroku to send email in production, but would like to
Is it possible to add a custom send button to gmail? I would like
I am using C#.NET 4.0 and would like to send an email to an
Possible Duplicate: Sending email through Gmail SMTP server with C# I would like my
I would like to learn how to build a web-based email client in PHP
I would like to send an email from an application that contains the current

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.