SoftArtisans SMTPMail And XP
Has anyone tried using SMTPMail on a Windows XP Pro machine? The sys.
reqs. on their site only says W2K (and prior).
I've successfully registered SASMTP.dll, and simply trying to
instantiate it in Classic ASP with:
Dim objMailer
Set objMailer = CreateObject("SoftArtisans.SMTPMail")
results in an error:
Microsoft VBScript runtime (0x800A01AD)
ActiveX component can't create object: 'SoftArtisans.SMTPMail'
/test.asp, line 12
View Replies
I am trying to use SoftArtisans FileUp Professional to upload a directory. I
have found some sample code to help but you have to type in the directory
name when you run the page.
I want to use a form in the same way as for a file upload to browse and
select my directory for upload. Anyone know how to code this?
Also are there any good places other than the official SA site to go for
help with sample code?
View Replies
View Related
<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="123"
myMail.From=(Request.Form("email"))
myMail.To="11111@yahoo.co.uk"
myMail.TextBody=(Request.Form("comment"))
myMail.Send
%>
and i get this error
Microsoft VBScript runtime (0x800A01A8)
Object required: 'SmtpMail'
I have tried using the
SmtpMail.SmtpServer = "localhost"
in the code but no joy.
View Replies
View Related
I believe that the SMTPMail component is part of ASP.NET, although I may be wrong, but is there anyway of using it in normal ASP scripts??
I ask because I need to send an email via my script, to a preset email address and containing the same message each time it is sent, and I have my own SMTP server (linux based) which I would like to utilise.
I also cannot use CDOSYS for this, tried everything but cannot get it to work on my machine
Failing that, does anyone know of a freeware component that will enable me to put normal SMTP commands into my scripts, just so I can send an email to a specified address, containing a basic body and using the SMTP server I have.
View Replies
View Related
Ive been trying to send an email (via iis smtp virtual mail server) using the SmtpMail class in asp.net, but i keep getting a failure to deliver message. Is there something im not doing?
MailMessage mail = new MailMessage();
mail.From = "oh_neil@yahoo.com";
mail.To = "to104@gre.ac.uk";
mail.Body = "Test email";
SmtpMail.SmtpServer = "localhost";
SmtpMail.Send(mail);
View Replies
View Related
I'm trying to use JMail to send the contents of a forum. This is the code i'm using:
Set JMail = Server.CreateObject("JMail.SMTPMail")
strServer = Replace(request.servervariables("SERVER_NAME"), "www.", "")
strClientIP = request.servervariables("REMOTE_ADDR")
JMail.ServerAddress = "smtp."&strServer&":25"
JMail.Sender = "" & email & ""
JMail.Subject = "" & itemname & "(" & id & ") - " & subject & ""
JMail.AddRecipient "email@domain.com"
JMail.Body = "" & message & ""
JMail.Priority = 3
JMail.AddHeader "Originating-IP", strClientIP
JMail.Execute
Set jmail = Nothing
However, this doesn't work, and I get the error:
jmail.SMTPMail error '8000ffff'
The message was undeliverable. All servers failed to receive the message
contact2.asp, line 36
Line 36 of this script is: JMail.Execute
I am 100% sure JMail is installed, as it was previously working, and this is the script my host says to use.
View Replies
View Related
Can anyone please help me with this. I have same code to send the emails. But once in a while i am getting this error messages. Could you please tell me what might be the possible reasons that makes this occur.
jmail.SMTPMail error '8000ffff'
503 must have sender and recipient first
Here are the program details: ....
View Replies
View Related
I am testing JMail through ASP on my local server so I can just swap out serverAddress when it goes live to make a simple switch with our live server.
However I KEEP getting :
The message was undeliverable. All servers failed to recieve the message
jmail.dll was installed into windows/system32 and regsvr32 jmail.dll was successful.
Here's the code; I specified :
localhost:25
mail.locahost:25
mail.localhost.com:25
127.0.0.1:25
all with and without the :25 on the end. No go. Same error. Here's my code :
View Replies
View Related