M1EXP Email - Bluebottle

stacyh3

Active Member
Okay, I've read through the various discussions on the correct way to configure the M1EXP to send email. I got an SMTP account from bluebottle.com and wrote a simple test app in C# that is able to send SMTP mail just fine from via the bluebottle server. I still can't seem to get the M1EXP to work. I have tried a few different configurations without luck. Has anyone else tried bluebottle with the Elk? Any suggestions?

Here's the test app that works:
class Application
{
static void Main(string[] args) {
MailAddress toAddress = new MailAddress("[email protected]", "you");
MailAddress fromAddress = new MailAddress("[email protected]", "me");

MailMessage message = new MailMessage( fromAddress, toAddress );
message.Subject = "Subject";
message.Body = "Body: This is a test.";

SmtpClient client = new SmtpClient("mail.bluebottle.com");
client.Port = 587;
client.Credentials = new NetworkCredential(@"xxxxx", @"yyyyy");
client.Send(message);
}
}
 
Using the IP address for the SMTP server instead of the server name did the trick!

Okay, I've read through the various discussions on the correct way to configure the M1EXP to send email. I got an SMTP account from bluebottle.com and wrote a simple test app in C# that is able to send SMTP mail just fine from via the bluebottle server. I still can't seem to get the M1EXP to work. I have tried a few different configurations without luck. Has anyone else tried bluebottle with the Elk? Any suggestions?

Here's the test app that works:
class Application
{
static void Main(string[] args) {
MailAddress toAddress = new MailAddress("[email protected]", "you");
MailAddress fromAddress = new MailAddress("[email protected]", "me");

MailMessage message = new MailMessage( fromAddress, toAddress );
message.Subject = "Subject";
message.Body = "Body: This is a test.";

SmtpClient client = new SmtpClient("mail.bluebottle.com");
client.Port = 587;
client.Credentials = new NetworkCredential(@"xxxxx", @"yyyyy");
client.Send(message);
}
}
 
Back
Top