Re: WOMailDelivery
Re: WOMailDelivery
- Subject: Re: WOMailDelivery
- From: George Domurot <email@hidden>
- Date: Wed, 18 Feb 2004 10:42:22 -0500
Xavier: Make sure you have set your SMTPHost in your Application class:
setSMTPHost(SMTPHostName);
You may want to also test sending new NSArray() instead of null for
otherPeople.
-George
On Feb 18, 2004, at 9:00 AM, Dev WO wrote:
> Hi,
> I have created a form in order to allow user to "talk" with us, and I
> want people to be able to "send" it without requiring a client program.
> So I'm trying to use WOMailDelivery to send it server-side.
> But it looks like it doesn't work.
> The Web App is deployed on an Xserve running Panther server and the
> default mail server (Postfix).
> Here's the action I've created to send the form and also to change a
> conditional (isSent) inside the component to display a "thank you"
> message. But none work:
> ----
> public WOComponent sendCommentaire()
> {
> WOMailDelivery wom = WOMailDelivery.sharedInstance();
> String myMessage = "nom:" + personName + personLast + "\n" + "email:"
> + personEmail + "\n" + "adresse:" + personPostal + "\n" + personPostal2
> + "\n" + personZIP + personCity + "-" + personCountry + "\n" +
> "fonction:" + personFonction + "-" + "entreprise:" + personCompany +
> "\n" + "subject:" + personSubject + "\n" + "commentaires:" +
> personComment;
> NSMutableArray destinataires = new NSMutableArray();
> destinataires.addObject("email@hidden");
> wom.composePlainTextEmail("email@hidden", destinataires, null,
> "Commentaires depuis le site", myMessage, true);
> isSent = true;
> return null;
> }
>
> ----
>
> If anyone can point me to the mistake, thanks a lot
>
> Xavier
> _______________________________________________
> webobjects-dev mailing list | email@hidden
> Help/Unsubscribe/Archives:
> http://www.lists.apple.com/mailman/listinfo/webobjects-dev
> Do not post admin requests to the list. They will be ignored.
_______________________________________________
webobjects-dev mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/webobjects-dev
Do not post admin requests to the list. They will be ignored.