• keisei
  • NEWBIE
  • 0 Points
  • Member since 2009

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 2
    Replies

Firefoxでディスカッションボードを開こうとするとエラーが出て開きません。

IE8では開きますが、常時使用しているFirefox3.5.8では開かないため非常に不便です。

どのようにすればよろしいのでしょうか。

どなたか教えてください。

 

エラーメッセージは:-

Request Entity Too Large
The requested resource
/sforce/
does not allow request data with GET requests, or the amount of data provided in the request exceeds the capacity limit.

です。

  • April 04, 2010
  • Like
  • 0

I tried to test sending mass emails using following test code

sited form Visualforce Manual.

But failed to have received an error message.

Any suggestion appreciated.

In case of sending a singlemassage test,it was OK.

 

 Error Message:-

       System.EmailException:
       SendEmail failed. First exception on row 0;
       first error: INVALID_ID_FIELD,
       Visualforce templates are not currently supported for mass email.: []

 

 Test Code:-

    User you = [ SELECT Email
             FROM User
             WHERE Id = :UserInfo.getUserId()
             LIMIT 1 ];
    EmailTemplate template = [ SELECT Id
                           FROM EmailTemplate
                           WHERE DeveloperName = 'Test_Template'
                             LIMIT 1 ];
     Messaging.MassEmailMessage mail = new Messaging.MassEmailMessage();
     mail.templateId = template.Id;
    mail.targetObjectIds = new Id[] { you.Id };
    mail.setSaveAsActivity(false);
     Messaging.sendEmail(new Messaging.MassEmailMessage[] { mail });

 

  • April 04, 2010
  • Like
  • 0

It is said that mass email is allowed to send 250 mails per call and  up to 1000 mails per day.

But I found the article on the page 181 of  the book "Development with the Force.com Platform" by Jason Quellette

saying  "You can reach 2,500 recipients using the MassEmailMessage ". On this book  said  " 250 recipients times the 10 invocation maximum".

Is it true we can send 2500 mails per pay ?

Any suggestion appreciated.

 

     Yoshio Takemura

  • April 02, 2010
  • Like
  • 0

I tried to test sending mass emails using following test code

sited form Visualforce Manual.

But failed to have received an error message.

Any suggestion appreciated.

In case of sending a singlemassage test,it was OK.

 

 Error Message:-

       System.EmailException:
       SendEmail failed. First exception on row 0;
       first error: INVALID_ID_FIELD,
       Visualforce templates are not currently supported for mass email.: []

 

 Test Code:-

    User you = [ SELECT Email
             FROM User
             WHERE Id = :UserInfo.getUserId()
             LIMIT 1 ];
    EmailTemplate template = [ SELECT Id
                           FROM EmailTemplate
                           WHERE DeveloperName = 'Test_Template'
                             LIMIT 1 ];
     Messaging.MassEmailMessage mail = new Messaging.MassEmailMessage();
     mail.templateId = template.Id;
    mail.targetObjectIds = new Id[] { you.Id };
    mail.setSaveAsActivity(false);
     Messaging.sendEmail(new Messaging.MassEmailMessage[] { mail });

 

  • April 04, 2010
  • Like
  • 0

It is said that mass email is allowed to send 250 mails per call and  up to 1000 mails per day.

But I found the article on the page 181 of  the book "Development with the Force.com Platform" by Jason Quellette

saying  "You can reach 2,500 recipients using the MassEmailMessage ". On this book  said  " 250 recipients times the 10 invocation maximum".

Is it true we can send 2500 mails per pay ?

Any suggestion appreciated.

 

     Yoshio Takemura

  • April 02, 2010
  • Like
  • 0