Sending email from within a program
I have an educational simulation in which administrators (professors) need to send a small zip file to each competing team prior to the start of the competition. I have designed the program so that they enter a team number and an email address and then click Send. The program sends a small message and the attachment using my email address [email protected] at Inmotion.
The program uses the following info to send the program:
.SMTPHost = "secure104.inmotionhosting.com"
.From = "[email protected]"
.FromDisplayName = "Simulation Administrator"
.Recipient = EmailAddress1
.RecipientDisplayName = "BPG team" & World1 & Company1
It works fine on my computer, but a user in Brazil tested it and received the following errors:
550 Helo required before mail
503 Sender not yet given
I want to send it through my account using a variant of sendmail to prevent problems present when trying to use MAPI with a number of different email clients. What do I need to do to make this work?
Dave
The program uses the following info to send the program:
.SMTPHost = "secure104.inmotionhosting.com"
.From = "[email protected]"
.FromDisplayName = "Simulation Administrator"
.Recipient = EmailAddress1
.RecipientDisplayName = "BPG team" & World1 & Company1
It works fine on my computer, but a user in Brazil tested it and received the following errors:
550 Helo required before mail
503 Sender not yet given
I want to send it through my account using a variant of sendmail to prevent problems present when trying to use MAPI with a number of different email clients. What do I need to do to make this work?
Dave